Item Filtering: Difference between revisions

142,341 bytes removed ,  1 month ago
Undo revision 17920 by Equanimity (talk)
(→‎Filter Codes: added hex codes for notification keywords which correspond to text colors)
(Undo revision 17920 by Equanimity (talk))
Tag: Undo
 
(43 intermediate revisions by 5 users not shown)
Line 1:
<translate>
<!--T:161-->
Item filtering allows players to filter out items they don't want to see, and also change the appearance of items that are not filtered out. While there are in-game options for simple item filtering, players can use item filters to customize this to their liking. [https://github.com/Project-Diablo-2/BH PD2's Filtering] is open-source and based on [https://github.com/planqi/slashdiablo-maphack BH 1.9.9].
 
<!--T:162-->
For other out-of-game customization options, see '''[[Customization]]'''.
 
<!--T:163-->
== Filters ==
Item filters (often called lootfilters) are text files which contain rules for describing how items should be displayed in-game. The default filter only has a few simple rules for adding descriptions to some items (map orbs and stackable gems/runes), and otherwise displays all items the same as they would be in vanilla.
 
<!--T:164-->
By default, filtering is done using '''default.filter''' in the ''ProjectD2'' directory - unless changed, it only has a few simple rules. If '''loot.filter''' is present in the same directory, it will be used instead of the default file. If a filter is selected from the launcher, it will be saved in ''ProjectD2\filters'' and be used instead via a '''loot.filter''' system link from the ''ProjectD2'' directory.
 
<!--T:165-->
These files will function if encoded in UTF-8 (default), but ANSI encoding is needed to allow [[Item_Filtering#Output|special characters]] to display properly.
 
 
<!--T:166-->
Filters can be selected from the [https://github.com/Project-Diablo-2/LootFilters#project-diablo-2-loot-filters launcher] and enabled via the in-game Settings menu.
 
To install manually, download a filter file and save it to ''Diablo II\ProjectD2\filters\local'' and then select it from the launcher. Make sure the relevant in-game settings are enabled.
<!--T:167-->
To install manually, download a filter file and save it to ''Diablo II\ProjectD2\local'' and then select it from the launcher. Make sure the relevant in-game settings are enabled.
{{:Filter_Info}}
 
<!--T:168-->
<!-- End of "Filters" category -->
 
<!--T:22-->
== Filter Syntax ==
Filters contain rules for how items should be displayed in-game. Each rule has '''''Input''''' and '''''Output''''' and follows this basic format:
 
ItemDisplay[ '''''Input''''' ]: '''''Output'''''
<!--T:23-->
ItemDisplay[ '''''Input''''' ]: '''''Output'''''
 
<!--T:24-->
The '''''Input''''' specifies a set of ''conditions'' an item must satisfy for the rule to apply to it, and '''''Output''''' specifies the actions (''text'' or ''keywords'') used when a matching item is found.
 
<!--T:25-->
If a line doesn't follow this format, it won't be considered a rule, which means it won't affect how items will be displayed in-game. If a line is intentionally ignored like this, it should begin with '''''//''''' (double slash) so the computer can ignore it immediately rather than spend time checking the rest of the line to determine whether it's a rule or not.
 
 
<!--T:26-->
Filter rules are processed in-order from top to bottom. Items are displayed according to the output of the first rule whose conditions they satisfy. If the matching rule doesn't include '''''%CONTINUE%''''', the procedure is halted and no additional rules are checked. In this way, rules that are higher than others have higher priority. The only exception is for [[Item_Filtering#Notification_Keywords|notification keywords]], which apply regardless of where they are in the filter.
 
 
<!--T:27-->
The simplest rule is one without any conditions or output. Sans conditions, the rule will apply to all items. Sans output, nothing will be displayed for those items.
 
<!--T:28-->
<code>ItemDisplay[]:</code> <span style="color:gray;">''hides all items''</span>
 
 
<!--T:29-->
The next simplest rule is one that displays all items with their default appearances. The output keyword '''''%NAME%''''' refers to an item's default appearance, and varies depending on which item is being shown. All items are displayed by default - the game essentially adds this rule to the bottom of the filter before beginning to process the filter's rules.
 
<code>ItemDisplay[]: %NAME%</code> <span style="color:gray;">''displays all items with their default names''</span>
<!--T:30-->
 
<code>ItemDisplay[]: %NAME%</code> <span style="color:gray;">''displays all items with their default appearances''</span>
<code>ItemDisplay[]: %NAME%{%NAME%}</code> <span style="color:gray;">''displays all items with their default names and descriptions''</span>
 
<!--T:31-->
=== Conditions ===
Conditions describe which item(s) the rule should apply to.
 
<!--T:32-->
Many conditions refer to a single item or item group. These boolean conditions will be either true or false, depending on which item is being looked at.
 
<!--T:33-->
<code>ItemDisplay[key]:</code> <span style="color:gray;">''hides keys (they can still be purchased from merchants)''</span>
 
 
<!--T:34-->
Value conditions typically refer to the value of a specific property on the item being looked at. They each have three parts: code, comparison operator ('''<''','''>''','''='''), and value to compare against.
 
<!--T:35-->
<code>ItemDisplay[GOLD<100]:</code> <span style="color:gray;">''hides gold stacks if they are less than 100''</span>
 
 
<!--T:36-->
Rules with multiple conditions may use logic operators ('''AND''','''OR''','''!''') to specify how the conditions relate to each other. If no operator is used between conditions, '''AND''' will be assumed.
 
<code>ItemDisplay[NMAG AND SOCKETS=1 AND CLVL>10]:</code> <span style="color:gray;">''hides regular 1-socket items if the character is above level 10''</span>
<!--T:37-->
<code>ItemDisplay[NMAG AND SOCK=1 AND CLVL>10]:</code> <span style="color:gray;">''hides regular 1-socket items if the character is above level 10''</span>
 
<code>ItemDisplay[NMAG SOCKETS=1 CLVL>10]:</code> <span style="color:gray;">''hides regular 1-socket items if the character is above level 10 (same as above)''</span>
<!--T:38-->
<code>ItemDisplay[NMAG SOCK=1 CLVL>10]:</code> <span style="color:gray;">''hides regular 1-socket items if the character is above level 10''</span>
 
 
<!--T:39-->
To make a rule apply to any item from within a group of conditions, use '''OR''' and parentheses.
 
<!--T:40-->
<code>ItemDisplay[NMAG (BOOTS OR GLOVES OR BELT) CLVL>10]:</code> <span style="color:gray;">''hides regular boots/gloves/belts if the character is above level 10''</span>
 
<!--T:41-->
Parentheses can help combine conditions in other ways too.
 
<!--T:42-->
<code>ItemDisplay[(GOLD<100 OR (GOLD<1000 CLVL>50))]:</code> <span style="color:gray;">''hides gold stacks if they are less than 100, or less than 1000 if the character is above level 50''</span>
 
 
<!--T:43-->
Negation (sometimes called the "NOT" operator) makes conditions mean the opposite of what they would otherwise. To negate a condition, use "'''!'''" in front of it.
 
<!--T:44-->
<code>ItemDisplay[MAG ETH ARMOR !ID]:</code> <span style="color:gray;">''hides magic ethereal armor that is not identified''</span>
 
<!--T:45-->
Groups of conditions can be negated in the same way.
 
<!--T:46-->
<code>ItemDisplay[MAG !ID HELM !(BAR OR DRU OR ELT)]:</code> <span style="color:gray;">''hides magic unidentified helms that are not barbarian helms, druid pelts, or elite''</span>
 
 
<!--T:47-->
In addition to the standard comparison operators, value conditions can also be used with the "BETWEEN" operator ('''~''') to specify value ranges.
 
<code>ItemDisplay[NMAG SOCKETS~1-2]:</code> <span style="color:gray;">''hides regular items with 1-2 sockets''</span>
 
<code>ItemDisplay[NMAG SOCKETS>0 SOCKETS<3]:</code> <span style="color:gray;">''hides regular items with 1-2 sockets (same as above)''</span>
 
 
The following attribute codes can have addition applied between them prior to the condition being evaluated: '''STR''', '''DEX''', '''STAT3''' (vitality) '''LIFE''', '''MANA''', '''FRES''', '''CRES''', '''LRES''', '''PRES''', '''EDEF''', '''EDAM''', '''FCR''', '''AR''', '''REPLIFE''', '''STAT60''' (life leech), '''STAT62''' (mana leech)
 
<code>ItemDisplay[RARE FRES+CRES+LRES+PRES>79]: %NAME% %RED%!</code> <span style="color:gray;">''appends a red '''!''' to rares with 80+ total resistance''</span>
 
 
=== Output ===
A rule's output (text and keywords in the second part of the rule) describe how the matching item(s) should be displayed.
 
An item's default name can be referenced with the '''''%NAME%''''' keyword and modified by adding text. To shorten a name or change it entirely, write-out the new name instead. Valid text characters include all those in the [https://en.wikipedia.org/wiki/List_of_Unicode_characters#Basic_Latin '''Basic Latin'''] and [https://en.wikipedia.org/wiki/List_of_Unicode_characters#Latin-1_Supplement '''Latin-1 Supplement'''] Unicode blocks.
<!--T:48-->
An item's default name can be referenced with the '''''%NAME%''''' keyword and modified by adding text. To shorten a name or change it entirely, write-out the new name instead. Valid text characters include all those in the [https://en.wikipedia.org/wiki/List_of_Unicode_characters#Basic_Latin '''Basic Latin'''] and [https://en.wikipedia.org/wiki/List_of_Unicode_characters#Latin-1_Supplement '''Latin-1 Supplement'''] Unicode blocks (except '''·''' and '''¸''').
 
<!--T:182-->
{| class="wikitable"
|+ Valid Text Characters
Line 134 ⟶ 112:
| space || <code>&nbsp;</code>
|-
| other symbols || <code>µ¶¢£¥®©§¿¡¯¨¬­&#173;¦«»÷×±ªº´¤°¹²³¼½¾·¸</code>
|-
| other capital letters || <code>ÐÞÆØÁÀÂÄÃÅÇÉÈÊËÍÌÎÏÑÓÒÔÖÕÚÙÛÜÝ</code>
Line 141 ⟶ 119:
|}
* The last three categories require the filter file to be encoded in ANSI rather than the default UTF-8
* The soft hyphen character doesn't display correctly herein many places (including this wiki) but does show up in-game
* These characters display as "?" if HD text is disabled: ·¸
* These characters aren't displayed at all if HD text is enabled: ¬­÷±¤ (including soft hyphen)
 
 
<!--T:49-->
<code>ItemDisplay[hdm]: %NAME%</code> <span style="color:gray;">''Horadric Malus''</span>
 
<!--T:50-->
<code>ItemDisplay[hdm]: Charsi's %NAME%</code> <span style="color:gray;">''Charsi's Horadric Malus''</span>
 
<!--T:51-->
<code>ItemDisplay[hdm]: Charsi's Favorite Hammer</code> <span style="color:gray;">''Charsi's Favorite Hammer''</span>
 
 
<!--T:52-->
Text and keywords can be used together to add extra information, change parts of the name to be different colors, and more. See [[Item_Filtering#Output_Keywords | all keywords]] below.
 
<code>ItemDisplay[SOCKETS>0]: %NAME% %GRAY%[%SOCKETS%]</code> <span style="color:gray;">''displays socketed items with '''[X]''' appended in gray, where X is the number of sockets''</span>
<!--T:53-->
<code>ItemDisplay[SOCK>0]: %NAME% %GRAY%[%SOCKETS%]</code> <span style="color:gray;">''displays socketed items with '''[X]''' appended in gray, where X is the number of sockets''</span>
 
 
The price of an item (displayed above the name when a merchant is selling it) can be recolored by using a color keyword after the rest of the output.
<!--T:54-->
 
As with elsewhere, the double slash ('''//''') functions as an in-file way to write comments that will be ignored by the computer.
<code>ItemDisplay[SHOP]: %NAME%%WHITE%</code> <span style="color:gray;">''changes the price color for shop items to white</span>
 
 
As with elsewhere, the double slash ('''//''') functions as an in-file way to write comments that will be ignored by the computer. Everything afterward will be ignored.
 
<!--T:55-->
<code>ItemDisplay[NMAG (aqv OR cqv)]: // hides regular arrows/bolts</code>
 
<!--T:56-->
<code>ItemDisplay[tsc]: //%NAME% // Scroll of Town Portal</code> <span style="color:gray;">''this rule hides TP scrolls, but can be changed to display them instead by deleting the first '''//'''''</span>
 
When frequently enabling or disabling parts of a filter, putting '''//''' in front of those parts instead of deleting them can result in faster editing.
<!--T:57-->
 
<code>//ItemDisplay[MAG cm2]: // hides magic large charms</code> <span style="color:gray;">''this "rule" is ignored, but can be quickly re-enabled by deleting the first '''//'''''</span>
<code>ItemDisplay[tsc]: //%NAME%</code> <span style="color:gray;">''this rule hides TP scrolls, but can be changed to display them instead by deleting '''//''' in front of %NAME%''</span>
 
<code>//ItemDisplay[MAG (aqv OR cqv)]: // hides magic quivers if enabled</code> <span style="color:gray;">''this "rule" is ignored, but can be quickly re-enabled by deleting '''//''' from in front of ItemDisplay''</span>
 
 
<!--T:58-->
Items can be highlighted by adding spaces to either side of their name, so long as there is a keyword or non-space character between them and the edge of the name. Whitespace surrounding the '''''Output''''' of each rule gets removed prior to evaluation (spaces first, followed by tabs), so tabs are often the best non-space character to use.
 
<!--T:59-->
<code>ItemDisplay[RUNE>9]: %ORANGE% %NAME% %ORANGE%</code> <span style="color:gray;">''adds 1 space of highlighting for runes above #9 (tabs don't display properly on the wiki, so '''%ORANGE%''' is used instead)''</span>
 
 
<!--T:60-->
The '''''%CONTINUE%''''' keyword replaces the contents of '''''%NAME%''''' with the current rule's '''''Output''''' (overwriting the default name or previously stored output) and makes the program continue checking rules. This allows multiple rules to modify an item's appearance based on different conditions.
 
<code>ItemDisplay[SOCKETS>0]: %NAME% [%SOCKETS%]%CONTINUE%</code> <span style="color:gray;">''appends '''[X]''' to socketed items, where X is the number of sockets (continues)''</span>
<!--T:61-->
<code>ItemDisplay[SOCK>0]: %NAME% [%SOCKETS%]%CONTINUE%</code> <span style="color:gray;">''appends '''[X]''' to socketed items, where X is the number of sockets (continues)''</span>
 
<!--T:62-->
<code>ItemDisplay[ETH]: eth %NAME%%CONTINUE%</code> <span style="color:gray;">''prepends '''eth''' to ethereal items (continues)''</span>
 
<!--T:63-->
<code>ItemDisplay[]: %NAME%</code> <span style="color:gray;">''displays all items (with modifications from previous rules)''</span>
 
<!--T:64-->
Without '''''%CONTINUE%''''', this would require a separate rule for every possible combination of different conditions, the number of rules growing exponentially with each additional condition:
 
<code>ItemDisplay[ETH SOCKETS>0]: eth %NAME% [%SOCKETS%]</code>
<!--T:65-->
<code>ItemDisplay[ETH SOCK>0]: eth %NAME% [%SOCKETS%]</code>
 
<code>ItemDisplay[!ETH SOCKETS>0]: %NAME% [%SOCKETS%]</code>
<!--T:66-->
<code>ItemDisplay[!ETH SOCK>0]: %NAME% [%SOCKETS%]</code>
 
<code>ItemDisplay[ETH SOCKETS=0]: eth %NAME%</code>
<!--T:67-->
<code>ItemDisplay[ETH SOCK=0]: eth %NAME%</code>
 
<code>ItemDisplay[!ETH SOCKETS=0]: %NAME%</code>
<!--T:68-->
<code>ItemDisplay[!ETH SOCK=0]: %NAME%</code>
 
 
 
<!--T:69-->
Item descriptions can be modified by using text and keywords within '''''{}''''' (braces). Anything outside the braces applies to the item name while anything inside the braces applies to the item description.
 
<!--T:70-->
[[File:DescEx1.png|thumb|Item Description Example]]<code>ItemDisplay[]: %NAME%{$DARK_GREEN%$%PRICE%}</code> <span style="color:gray;">''item price is shown in the description like '''$35000''''' in dark green''</span>
 
<!--T:71-->
Item descriptions aren't taken into account when hiding items, so descriptions can still be shown for hidden items if they have one.
 
<!--T:72-->
<code>ItemDisplay[]: %NAME%{%NAME%}</code> <span style="color:gray;">''items displayed with their descriptions''</span>
 
<!--T:73-->
<code>ItemDisplay[]: {%NAME%}</code> <span style="color:gray;">''items hidden but their descriptions still shown''</span>
 
<!--T:74-->
<code>ItemDisplay[]:</code> <span style="color:gray;">''items hidden and their descriptions hidden too''</span>
 
 
<!--T:75-->
The '''''%CONTINUE%''''' keyword only functions when used ''outside'' the braces and applies to both the item name and the item description.
 
<!--T:76-->
<code>ItemDisplay[]: %NAME%{Item Level: %ILVL%}%CONTINUE%</code> <span style="color:gray;">''Shows item level in description (continues)''</span>
 
<!--T:77-->
<code>ItemDisplay[]: %NAME%{%NAME%, Affix Level: %ALVL%}</code> <span style="color:gray;">''Appends affix level in description with comma separator''</span>
 
 
The '''''%NL%''''' keyword adds a new line above the previous line and can be used in item descriptions for any item, or item names for the following: identified items whose rarity is magic or higher, runewords, and items within shops.
<!--T:78-->
The '''''%NL%''''' keyword adds a new line above the previous line and can only be used within item descriptions.
 
<code>ItemDisplay[]: %NAME%{Affix Level: %ALVL%%NL%Item Level: %ILVL%}</code> <span style="color:gray;">''Shows item/affix levels on separate lines in description (same effect as '''Show Item Level''' setting)''</span>
<!--T:79-->
 
<code>ItemDisplay[]: %NAME%{Affix Level: %ALVL%%NL%Item Level: %ILVL%}</code> <span style="color:gray;">''Shows item/affix levels on separate lines in description (same effect as '''Show iLvl''' setting)''</span>
 
The number of displayed characters for an item's name is capped at 56. The internal limit for an item's name includes additional characters for color keywords (3 characters each) and %NL% (2 characters each) and goes up to 125.
 
For example, a name that uses all 56 text characters and also uses 23 color keywords (69 internal characters) would have an internal size of 125 (56+69) and work as expected, but attempting to add another color will break things.
 
The cap for item descriptions is much higher at 500 total characters and, unlike for item names, is the same for both displayed characters and internal characters.
 
<!--T:80-->
<!-- End of "Filter Syntax" category -->
 
<!--T:151-->
== Filter Strictness ==
[[File:filter_strictness_default.png|thumb|Default Filter Strictness Levels]]
Filter levels can be selected from the in-game settings menu and will change which rules/notifications are enabled based on the FILTLVL/TIER codes used in the filter. By default, there are two levels: "Standard" and "Show All Items". The "Standard" level is the normal filter behavior that would be seen without any filter level changes, whereas "Show All Items" will just prevent any items from being filtered out (hidden).
 
<!--T:153-->
To enable custom filter levels, use the following format at the top of the filter:
 
<code>ItemDisplayFilterName[]: Low Strictness</code> <span style="color:gray;">''Adds a new filter strictness level named "Low Strictness"''</span>
<!--T:154-->
 
<code>ItemDisplayFilterName[]: Custom Level 1</code> <span style="color:gray;">''Adds a new filter strictness level named "Custom Level 1"''</span>
<code>ItemDisplayFilterName[]: Medium Strictness</code> <span style="color:gray;">''Adds a new filter strictness level named "Medium Strictness"''</span>
 
<code>ItemDisplayFilterName[]: High Strictness</code> <span style="color:gray;">''Adds a new filter strictness level named "High Strictness"''</span>
<!--T:155-->
<code>ItemDisplayFilterName[]: Custom Level 2</code> <span style="color:gray;">''Adds a new filter strictness level named "Custom Level 2"''</span>
 
 
<!--T:156-->
In addition to level 0 ("Show All Items") which is always available, up to 9 other levels can be enabled and the order in which they're listed at the top of the filter determines which number will reference them when used with the FILTLVL/TIER codes (e.g. '''''FILTLVL=1''''' and '''''%TIER-1%''''' for the first custom level).
 
<!--T:178-->
These codes can be used to create separate versions of the same filter with varying levels of strictness, make separate versions which includes extra info so that players can more easily reference niche item info without it cluttering item tooltips during normal gameplay (the levels could be swapped to when needed), or even combine drastically different filters into one just so they can be more easily swapped between.
 
<!--T:157-->
<code>ItemDisplay[yps FILTLVL>1]:</code> <span style="color:gray;">''Hides Antidote Potions if filter level 2+ is selected''</span>
 
<!--T:158-->
<code>ItemDisplay[MAG !ID cm1]: %NAME%%TIER-2%%DOT-97%</code> <span style="color:gray;">''Shows notifications for unidentified magic small charms if filter level 2 or lower is selected (still shows map icons at all levels)''</span>
 
 
<!--T:179-->
If a rule doesn't include '''''FILTLVL''''' as a condition, it won't be restricted by whatever filter level is selected.
 
<!--T:180-->
If a rule includes a [[Item_Filtering#Notification_Keywords|notification keyword]] and ''doesn't'' include a TIER keyword, it'll act as if '''''%TIER-9%''''' is included - it'll notify at all filter levels instead of being restricted by whatever filter level is selected.
 
<!--T:159-->
<!-- End of "Filter Strictness" category -->
 
<!--T:81-->
== Filter Codes ==
=== Output Keywords ===
Line 292 ⟶ 245:
These keywords change the color for subsequent text. If absent, the item's default color will be used instead.
{| class="wikitable"
! Code !! Color !! Default Use !! Hex
|-
| %WHITE% || <span class="d2-white">White</span> || regular items || 20
|-
| %GRAY% || <span class="d2-gray">Gray</span> || regular items (ethereal or socketed) || 1D
|-
| %BLUE% || <span class="d2-blue">Blue</span> || magic items, item descriptions || 97
|-
| %YELLOW% || <span class="d2-yellow">Yellow</span> || rare items || 6D
|-
| %GOLD% || <span class="d2-gold">Gold</span> || unique items, runeword names || 53
|-
| %GREEN% || <span class="d2-green">Green</span> || set items || 84
|-
| %DARK_GREEN% || <span class="d2-dark-green">Dark Green</span> || || 77
|-
| %TAN% || <span class="d2-tan">Tan</span> || || 5A
|-
| %BLACK% || <span class="d2-black">Black</span> || || 00
|-
| %PURPLE% || <span class="d2-purple">Purple</span> || || 9B
|-
| %RED% || <span class="d2-red">Red</span> || broken/unusable items || 62
|-
| %ORANGE% || <span class="d2-orange">Orange</span> || crafted items, endgame quest items, runes || 60
|-
| %CORAL% || <span class="d2-coral">Coral</span> || ''only works with Glidecustom'' || ?
|-
| %SAGE% || <span class="d2-sage">Sage</span> || ''only works with Glidecustom'' || ?
|-
| %TEAL% || <span class="d2-teal">Teal</span> || ''only works with Glidecustom'' || ?
|-
| %LIGHT_GRAY% || <span class="d2-light-gray">Light Gray</span> || ''only works with Glidecustom'' || ?
|}
* Custom text colors only work with Glide or if HD text is enabled, and will otherwise function the same as '''''%GRAY%'''''
 
<!--T:82-->
Some items have their default color built into '''''%NAME%''''', so their color won't change unless their name is rewritten completely. This is likely [[Bugs|unintended behavior]], and applies to runes, Standard of Heroes, and the PD2-specific non-equipment items other than map/arena scrolls and jewel fragments.
 
<!--T:83-->
<code>ItemDisplay[wss]: %RED%%NAME%</code> <span class="d2-purple">''Worldstone Shard''</span>
 
<!--T:84-->
<code>ItemDisplay[wss]: %RED%Worldstone Shard</code> <span class="d2-red">''Worldstone Shard''</span>
 
<!--T:85-->
==== Value References ====
{| class="wikitable"
Line 354 ⟶ 304:
|-
| %QTY% || quantity || 0 - 350
|-
| %SOCKETS% || number of sockets || 0 - 6
|-
| %RANGE% || melee range adder || 0 - 5
Line 372 ⟶ 320:
|}
 
Additionally, keywords also exist for each [[Item_Filtering#Named_Attribute_Codes|named attribute code]] (except '''MAXDUR''') and each [[Item_Filtering#Numbered_Attribute_Codes|numbered attribute code]]. Some examples are:
<!--T:86-->
{| class="wikitable"
! Code !! Output !! Details
|-
| %SOCKETS% || total sockets ||
|-
| %DEF% || total defense ||
|-
| %ED% || enhanced defense/damage || refers to defense for armor,<br>damage for weapons
|-
| %EDEF% || +N% Enhanced Defense || Includes bonuses from runewords and sockets<br>(ED does '''not''' include these)
|-
| %EDAM% || +N% Enhanced Damage || Includes bonuses from runewords and sockets<br>(ED does '''not''' include these)
|-
| %AR% || +N to Attack Rating ||
|-
| %RES% || All Resistances +N ||
|-
| %STR% || +N to Strength ||
|-
| %DEX% || +N to Dexterity ||
|-
| %STAT1% || +N to Energy ||
|-
| %STAT3% || +N to Vitality ||
|-
| %STAT36% || Physical Damage Taken Reduced by N% ||
|-
| %STAT58% || +X Poison Damage over Y Seconds<br>''bitrate N = (256X) / (25Y)'' ||
|-
| %STAT60% || N% Life Stolen per Hit ||
|-
| %STAT62% || N% Mana Stolen per Hit ||
|-
| %STAT86% || +N Life after each Kill ||
|-
| %STAT91% || Requirements +N% ||
|-
| %STAT329% || N% to Fire Skill Damage ||
|-
| %STAT330% || N% to Lightning Skill Damage ||
|-
| %STAT331% || N% to Cold Skill Damage ||
|-
| %STAT332% || N% to Poison Skill Damage ||
|-
| %STAT357% || N% to Magic Skill Damage ||
|-
| %SK48% || +N to Nova (Sorceress Only) || see [[Item_Filtering#Multi-layered_Stats|multi-layered stats]]
|}
 
==== Notification Keywords ====
[[File:MapNotificationColors.png|thumb|Minimap Icon Colors]]
These keywords add the item to the notification list and create a minimap icon for it.
 
The color of the minimap icon corresponds to the keyword's hexadecimal 2-digit color code. The icon may be black (00), green (84), red (62), or any of the other colors shown in the chart image. Note that '''%MAP%''' may be used without a 2-digit color code, in which case the icon will use the current text color (or white if no color has been set).
<!--T:87-->
The color of the minimap icon corresponds to the keyword's hexadecimal 2-digit color code. The icon may be black (00), green (84), red (62), or any of the other colors shown in the chart image. Note that '''%MAP%''' may be used without a 2-digit color code, in which case the icon will use the current text color (or white if no color has been set). The hexadecimal codes which correspond to the [[Item_Filtering#Colors|text colors]] are listed above.
 
<!--T:88-->
Multiple keywords can be used together to create multi-colored minimap icons.
 
<!--T:89-->
{| class="wikitable"
! Code !! Details
Line 396 ⟶ 391:
|}
 
The 2-digit hexadecimal codes which correspond to the [[Item_Filtering#Colors|text colors]] are listed below. Text colors have a solid inner color and their edges are blended to improve readability, so their average colors appear slightly different in some cases.
<!--T:90-->
{| class="wikitable"
! Text Color !! Hex (Inner) !! Hex (Average)
|-
| <span class="d2-white">White</span> || 1F || 20
|-
| <span class="d2-gray">Gray</span> || C6 || 1D
|-
| <span class="d2-blue">Blue</span> || 94 || 97
|-
| <span class="d2-yellow">Yellow</span> || 6A || 6D
|-
| <span class="d2-gold">Gold</span> || D3 || 53
|-
| <span class="d2-green">Green</span> || 7D || 84
|-
| <span class="d2-dark-green">Dark Green</span> || 76 || 77
|-
| <span class="d2-tan">Tan</span> || 0E || 5A
|-
| <span class="d2-black">Black</span> || 00 || 00
|-
| <span class="d2-purple">Purple</span> || 9B || 9B
|-
| <span class="d2-red">Red</span> || 55 || 62
|-
| <span class="d2-orange">Orange</span> || 0B || 60
|-
| <span class="d2-coral">Coral</span> || ? || ?
|-
| <span class="d2-sage">Sage</span> || ? || ?
|-
| <span class="d2-teal">Teal</span> || ? || 9F
|-
| <span class="d2-light-gray">Light Gray</span> || ? || ?
|}
 
<br>
 
<!--T:91-->
The following keyword only applies if '''Detailed Notifications''' is disabled, which is not recommended. To disable text notifications for items while keeping their minimap icons, use '''%TIER-0%''' instead.
 
<!--T:92-->
{| class="wikitable"
! Code !! Details
Line 411 ⟶ 440:
|}
 
<!--T:93-->
The ''NOTIFY'' keyword may use a 1-digit color code (0-F) which corresponds to these colors in order: WHITE, RED, GREEN, BLUE, GOLD, GRAY, BLACK, TAN, ORANGE, YELLOW, DARK_GREEN, PURPLE, GREEN, WHITE, BLACK, WHITE. If ''DEAD'' is used instead of a color code, the item's notifications will be disabled instead.
 
<!--T:94-->
Most filters are made to be used with '''Detailed Notifications''', so ''NOTIFY'' is incompatible with them. Note that without '''Detailed Notifications''' enabled, '''Drop Notifications''' will only apply to items when they initially drop (prior to being picked up for the first time).
 
 
All notification keywords bypass the normal rule-handling procedure. Normally, the rules are processed top-to-bottom and this process halts when a matching rule (without '''%CONTINUE%''') is found. Notification keywords, however, can apply even after the process has halted. This is most likely due to the game making a separate pass through the filter file for notification keywords - the first pass ignores notification keywords, and the second pass ignores everything else.
<!--T:95-->
All notification keywords seem to bypass the normal rule-handling procedure. Normally, the rules are processed top-to-bottom and this process halts when a matching rule (without '''%CONTINUE%''') is found. Notification keywords, however, can apply even after the process has halted. This may be [[Bugs|unintended behavior]].
 
<!--T:96-->
==== Special Keywords ====
{| class="wikitable"
Line 428 ⟶ 453:
| %CONTINUE% || the item is compared against additional rules instead of being displayed by the current rule<br>the current rule's output is stored in %NAME%
|-
| %NL% || specifies a new line, (lines are constructed bottom-up)<br>only works within braces (descriptions) or for '''ID !NMAG''', '''RW''', or '''SHOP''' items (identified items which are magic or higher rarity, runewords, or items within shops)
|-
| {} || anything within the braces applies to the item's description rather than the item's name/title
|-
| %TIER-10% || enablesdisables notificationtext keywordsnotifications (but not map icons) for the item if the [[Item_Filtering#Filter_Strictness|filter strictness]] level is atabove least 10 (value can be 10-9)
|}
 
<!--T:97-->
<!-- End of "Output Keywords" category -->
 
<!--T:98-->
=== Boolean Conditions ===
==== Mutable Codes ====
Contrary to most "immutable" codes which refer to static item properties, these conditions depend on where and how the item is being viewed. Some value conditions suchare asalso "mutable" in this way: [[Item_Filtering#Info_Codes|CLVL, andCRAFTALVL, DIFF, FILTLVL, MAPID]], areand also[[Item_Filtering#Numbered_Attribute_Codes|CHARSTAT "mutable" in this waycodes]].
{| class="wikitable"
! Code !! Description
Line 465 ⟶ 488:
<code>ItemDisplay[key ASSASSIN]:</code> <span style="color:gray;">''hides keys when playing as an Assassin''</span>
 
<!--T:183-->
Both '''SHOP''' and '''EQUIPPED''' behave as expected in most scenarios, but they each have a [[Bugs|bug]] associated with them. Most notably, '''EQUIPPED''' incorrectly applies to items that begin the game within the multiplayer shared stash.
 
<!--T:184-->
==== Item Group Codes ====
===== General Groups =====
Line 522 ⟶ 541:
</ul></div>
 
<!--T:99-->
===== Armor Groups =====
{| class="wikitable"
! Code !! Code !! Group !! Details
|-
| EQ1 || HELM || HelmetsHelms || includes class helms
|-
| EQ2 || CHEST || Chests ||
Line 544 ⟶ 562:
|}
 
<!--T:100-->
===== Weapon Groups =====
{| class="wikitable"
Line 557 ⟶ 574:
| WP4 || DAGGER || Daggers || includes throwing knives
|-
| WP5 || THROWING || Throwing Weapons || includes throwing knives/axes, all javelins, throwing potions
|-
| WP6 || JAV || Javelins || includes all throwing weapons, all spears, Amazon javelins
|-
| WP7 || SPEAR || Spears || includes Amazon spears & all javelins
|-
| WP8 || POLEARM || Polearms ||
Line 580 ⟶ 597:
|-
| 2H || || 2-Handed Weapons ||
|-
| CLUB || || Clubs (mace subtype) ||
|-
| TMACE || || Tipped Maces (mace subtype) ||
|-
| HAMMER || || Hammers (mace subtype) ||
|}
Since '''WP6''' overlaps entirely with both '''WP5''' and '''WP7''' (two very different kinds of weapons), it's rarely useful.
 
<!--T:181-->
The '''1H''' code is currently [[Bugs|bugged]] and doesn't include Hand Axe.
 
<!--T:101-->
===== Class-Restricted Item Groups =====
{| class="wikitable"
Line 593 ⟶ 611:
| CL1 || DRU || Druid pelts
|-
| CL2 || BAR || Barbarian helmetshelms
|-
| CL3 || DIN || Paladin shields
Line 604 ⟶ 622:
|-
| CL7 || ZON || Amazon weapons
|}
 
<!--T:102-->
==== Item Codes ====
===== Armor =====
{| class="wikitable"
! Code !! Item (Normal)
! style="background:#170d0a; border-top: 1px solid #170d0a; border-bottom: 1px solid #170d0a;" rowspan="79" |
! Code !! Item (Exceptional)
! style="background:#170d0a; border-top: 1px solid #170d0a; border-bottom: 1px solid #170d0a;" rowspan="79" |
! Code !! Item (Elite)
|-
| cap || Cap
| xap || War Hat
| uap || Shako
|-
| skp || Skull Cap
| xkp || Sallet
| ukp || Hydraskull
|-
| hlm || Helm
| xlm || Casque
| ulm || Armet
|-
| fhl || Full Helm
| xhl || Basinet
| uhl || Giant Conch
|-
| msk || Mask
| xsk || Death Mask
| usk || Demonhead
|-
| bhm || Bone Helm
| xh9 || Grim Helm
| uh9 || Bone Visage
|-
| ghm || Great Helm
| xhm || Winged Helm
| uhm || Spired Helm
|-
| crn || Crown
| xrn || Grand Crown
| urn || Corona
|-
| style="background:#3b2a1a" colspan="8" |
|-
| qui || Quilted Armor
| xui || Ghost Armor
| uui || Dusk Shroud
|-
| lea || Leather Armor
| xea || Serpentskin Armor
| uea || Wyrmhide
|-
| hla || Hard Leather Armor
| xla || Demonhide Armor
| ula || Scarab Husk
|-
| stu || Studded Leather
| xtu || Trellised Armor
| utu || Wire Fleece
|-
| rng || Ring Mail
| xng || Linked Mail
| ung || Diamond Mail
|-
| scl || Scale Mail
| xcl || Tigulated Mail
| ucl || Loricated Mail
|-
| chn || Chain Mail
| xhn || Mesh Armor
| uhn || Boneweave
|-
| brs || Breast Plate
| xrs || Cuirass
| urs || Great Hauberk
|-
| spl || Splint Mail
| xpl || Russet Armor
| upl || Balrog Skin
|-
| plt || Plate Mail
| xlt || Templar Coat
| ult || Hellforge Plate
|-
| fld || Field Plate
| xld || Sharktooth Armor
| uld || Kraken Shell
|-
| gth || Gothic Plate
| xth || Embossed Plate
| uth || Lacquered Plate
|-
| ltp || Light Plate
| xtp || Mage Plate
| utp || Archon Plate
|-
| ful || Full Plate Mail
| xul || Chaos Armor
| uul || Shadow Plate
|-
| aar || Ancient Armor
| xar || Ornate Plate
| uar || Sacred Armor
|-
| style="background:#3b2a1a" colspan="8" |
|-
| buc || Buckler
| xuc || Defender
| uuc || Heater
|-
| sml || Small Shield
| xml || Round Shield
| uml || Luna
|-
| lrg || Large Shield
| xrg || Scutum
| urg || Hyperion
|-
| spk || Spiked Shield
| xpk || Barbed Shield
| upk || Blade Barrier
|-
| kit || Kite Shield
| xit || Dragon Shield
| uit || Monarch
|-
| bsh || Bone Shield
| xsh || Grim Shield
| ush || Troll Nest
|-
| tow || Tower Shield
| xow || Pavise
| uow || Aegis
|-
| gts || Gothic Shield
| xts || Ancient Shield
| uts || Ward
|-
| style="background:#3b2a1a" colspan="8" |
|-
| lgl || Leather Gloves
| xlg || Demonhide Gloves
| ulg || Bramble Mitts
|-
| vgl || Heavy Gloves
| xvg || Sharkskin Gloves
| uvg || Vampirebone Gloves
|-
| mgl || Chain Gloves
| xmg || Heavy Bracers
| umg || Vambraces
|-
| tgl || Light Gauntlets
| xtg || Battle Gauntlets
| utg || Crusader Gauntlets
|-
| hgl || Gauntlets
| xhg || War Gauntlets
| uhg || Ogre Gauntlets
|-
| style="background:#3b2a1a" colspan="8" |
|-
| lbt || Boots
| xlb || Demonhide Boots
| ulb || Wyrmhide Boots
|-
| vbt || Heavy Boots
| xvb || Sharkskin Boots
| uvb || Scarabshell Boots
|-
| mbt || Chain Boots
| xmb || Mesh Boots
| umb || Boneweave Boots
|-
| tbt || Light Plated Boots
| xtb || Battle Boots
| utb || Mirrored Boots
|-
| hbt || Greaves
| xhb || War Boots
| uhb || Myrmidon Greaves
|-
| style="background:#3b2a1a" colspan="8" |
|-
| lbl || Sash
| zlb || Demonhide Sash
| ulc || Spiderweb Sash
|-
| vbl || Light Belt
| zvb || Sharkskin Belt
| uvc || Vampirefang Belt
|-
| mbl || Belt
| zmb || Mesh Belt
| umc || Mithril Coil
|-
| tbl || Heavy Belt
| ztb || Battle Belt
| utc || Troll Belt
|-
| hbl || Plated Belt
| zhb || War Belt
| uhc || Colossus Girdle
|-
| style="background:#3b2a1a" colspan="8" |
|-
| ci0 || Circlet
| rowspan="2" | ci2 || rowspan="2" | Tiara
| rowspan="2" | ci3 || rowspan="2" | Diadem
|-
| ci1 || Coronet
|-
| style="background:#3b2a1a" colspan="8" |
|-
| dr1 || Wolf Head
| dr6 || Alpha Helm
| drb || Blood Spirit
|-
| dr2 || Hawk Helm
| dr7 || Griffon Headress
| drc || Sun Spirit
|-
| dr3 || Antlers
| dr8 || Hunter's Guise
| drd || Earth Spirit
|-
| dr4 || Falcon Mask
| dr9 || Sacred Feathers
| dre || Sky Spirit
|-
| dr5 || Spirit Mask
| dra || Totemic Mask
| drf || Dream Spirit
|-
| style="background:#3b2a1a" colspan="8" |
|-
| ba1 || Jawbone Cap
| ba6 || Jawbone Visor
| bab || Carnage Helm
|-
| ba2 || Fanged Helm
| ba7 || Lion Helm
| bac || Fury Visor
|-
| ba3 || Horned Helm
| ba8 || Rage Mask
| bad || Destroyer Helm
|-
| ba4 || Assault Helmet
| ba9 || Savage Helmet
| bae || Conqueror Crown
|-
| ba5 || Avenger Guard
| baa || Slayer Guard
| baf || Guardian Crown
|-
| style="background:#3b2a1a" colspan="8" |
|-
| pa1 || Targe
| pa6 || Akaran Targe
| pab || Sacred Targe
|-
| pa2 || Rondache
| pa7 || Akaran Rondache
| pac || Sacred Rondache
|-
| pa3 || Heraldic Shield
| pa8 || Protector Shield
| pad || Kurast Shield
|-
| pa4 || Aerin Shield
| pa9 || Gilded Shield
| pae || Zakarum Shield
|-
| pa5 || Crown Shield
| paa || Royal Shield
| paf || Vortex Shield
|-
| style="background:#3b2a1a" colspan="8" |
|-
| ne1 || Preserved Head
| ne6 || Mummified Trophy
| neb || Minion Skull
|-
| ne2 || Zombie Head
| ne7 || Fetish Trophy
| neg || Hellspawn Skull
|-
| ne3 || Unraveller Head
| ne8 || Sexton Trophy
| ned || Overseer Skull
|-
| ne4 || Gargoyle Head
| ne9 || Cantor Trophy
| nee || Succubus Skull
|-
| CLASS || || All class-restricted items
| ne5 || Demon Head
| nea || Hierophant Trophy
| nef || Bloodlord Skull
|}
 
{{:Item Codes}}
<!--T:103-->
===== Weapons =====
{| class="wikitable"
! Code !! Item (Normal)
! style="background:#170d0a; border-top: 1px solid #170d0a; border-bottom: 1px solid #170d0a;" rowspan="113" |
! Code !! Item (Exceptional)
! style="background:#170d0a; border-top: 1px solid #170d0a; border-bottom: 1px solid #170d0a;" rowspan="113" |
! Code !! Item (Elite)
|-
| hax || Hand Axe
| 9ha || Hatchet
| 7ha || Tomahawk
|-
| axe || Axe
| 9ax || Cleaver
| 7ax || Small Crescent
|-
| 2ax || Double Axe
| 92a || Twin Axe
| 72a || Ettin Axe
|-
| mpi || Military Pick
| 9mp || Crowbill
| 7mp || War Spike
|-
| wax || War Axe
| 9wa || Naga
| 7wa || Berserker Axe
|-
| lax || Large Axe
| 9la || Military Axe
| 7la || Feral Axe
|-
| bax || Broad Axe
| 9ba || Bearded Axe
| 7ba || Silver-edged Axe
|-
| btx || Battle Axe
| 9bt || Tabar
| 7bt || Decapitator
|-
| gax || Great Axe
| 9ga || Gothic Axe
| 7ga || Champion Axe
|-
| gix || Giant Axe
| 9gi || Ancient Axe
| 7gi || Glorious Axe
|-
| style="background:#3b2a1a" colspan="8" |
|-
| clb || Club
| 9cl || Cudgel
| 7cl || Truncheon
|-
| spc || Spiked Club
| 9sp || Barbed Club
| 7sp || Tyrant Club
|-
| mac || Mace
| 9ma || Flanged Mace
| 7ma || Reinforced Mace
|-
| mst || Morning Star
| 9mt || Jagged Star
| 7mt || Devil Star
|-
| fla || Flail
| 9fl || Knout
| 7fl || Scourge
|-
| whm || War Hammer
| 9wh || Battle Hammer
| 7wh || Legendary Mallet
|-
| mau || Maul
| 9m9 || War Club
| 7m7 || Ogre Maul
|-
| gma || Great Maul
| 9gm || Martel de Fer
| 7gm || Thunder Maul
|-
| style="background:#3b2a1a" colspan="8" |
|-
| ssd || Short Sword
| 9ss || Gladius
| 7ss || Falcata
|-
| scm || Scimitar
| 9sm || Cutlass
| 7sm || Ataghan
|-
| sbr || Sabre
| 9sb || Shamshir
| 7sb || Elegant Blade
|-
| flc || Falchion
| 9fc || Tulwar
| 7fc || Hydra Edge
|-
| crs || Crystal Sword
| 9cr || Dimensional Blade
| 7cr || Phase Blade
|-
| bsd || Broad Sword
| 9bs || Battle Sword
| 7bs || Conquest Sword
|-
| lsd || Long Sword
| 9ls || Rune Sword
| 7ls || Cryptic Sword
|-
| wsd || War Sword
| 9wd || Ancient Sword
| 7wd || Mythical Sword
|-
| 2hs || Two-handed Sword
| 92h || Espandon
| 72h || Legend Sword
|-
| clm || Claymore
| 9cm || Dacian Falx
| 7cm || Highland Blade
|-
| gis || Giant Sword
| 9gs || Tusk Sword
| 7gs || Balrog Blade
|-
| bsw || Bastard Sword
| 9b9 || Gothic Sword
| 7b7 || Champion Sword
|-
| flb || Flamberge
| 9fb || Zweihander
| 7fb || Colossus Sword
|-
| gsd || Great Sword
| 9gd || Executioner Sword
| 7gd || Colossus Blade
|-
| style="background:#3b2a1a" colspan="8" |
|-
| dgr || Dagger
| 9dg || Poignard
| 7dg || Bone Knife
|-
| dir || Dirk
| 9di || Rondel
| 7di || Mithril Point
|-
| kri || Kris
| 9kr || Cinquedeas
| 7kr || Fanged Knife
|-
| bld || Blade
| 9bl || Stiletto
| 7bl || Legend Spike
|-
| style="background:#3b2a1a" colspan="8" |
|-
| tkf || Throwing Knife
| 9tk || Battle Dart
| 7tk || Flying Knife
|-
| tax || Throwing Axe
| 9ta || Francisca
| 7ta || Flying Axe
|-
| bkf || Balanced Knife
| 9bk || War Dart
| 7bk || Winged Knife
|-
| bal || Balanced Axe
| 9b8 || Hurlbat
| 7b8 || Winged Axe
|-
| style="background:#3b2a1a" colspan="8" |
|-
| jav || Javelin
| 9ja || War Javelin
| 7ja || Hyperion Javelin
|-
| pil || Pilum
| 9pi || Great Pilum
| 7pi || Stygian Pilum
|-
| ssp || Short Spear
| 9s9 || Simbilan
| 7s7 || Balrog Spear
|-
| glv || Glaive
| 9gl || Spiculum
| 7gl || Ghost Glaive
|-
| tsp || Throwing Spear
| 9ts || Harpoon
| 7ts || Winged Harpoon
|-
| style="background:#3b2a1a" colspan="8" |
|-
| spr || Spear
| 9sr || War Spear
| 7sr || Hyperion Spear
|-
| tri || Trident
| 9tr || Fuscina
| 7tr || Stygian Pike
|-
| brn || Brandistock
| 9br || War Fork
| 7br || Mancatcher
|-
| spt || Spetum
| 9st || Yari
| 7st || Ghost Spear
|-
| pik || Pike
| 9p9 || Lance
| 7p7 || War Pike
|-
| style="background:#3b2a1a" colspan="8" |
|-
| bar || Bardiche
| 9b7 || Lochaber Axe
| 7o7 || Ogre Axe
|-
| vou || Voulge
| 9vo || Bill
| 7vo || Colossus Voulge
|-
| scy || Scythe
| 9s8 || Battle Scythe
| 7s8 || Thresher
|-
| pax || Poleaxe
| 9pa || Partizan
| 7pa || Cryptic Axe
|-
| hal || Halberd
| 9h9 || Bec-de-Corbin
| 7h7 || Great Poleaxe
|-
| wsc || War Scythe
| 9wc || Grim Scythe
| 7wc || Giant Thresher
|-
| style="background:#3b2a1a" colspan="8" |
|-
| sbw || Short Bow
| 8sb || Edge Bow
| 6sb || Spider Bow
|-
| hbw || Hunter’s Bow
| 8hb || Razor Bow
| 6hb || Blade Bow
|-
| lbw || Long Bow
| 8lb || Cedar Bow
| 6lb || Shadow Bow
|-
| cbw || Composite Bow
| 8cb || Double Bow
| 6cb || Great Bow
|-
| sbb || Short Battle Bow
| 8s8 || Short Siege Bow
| 6s7 || Diamond Bow
|-
| lbb || Long Battle Bow
| 8l8 || Large Siege Bow
| 6l7 || Crusader Bow
|-
| swb || Short War Bow
| 8sw || Rune Bow
| 6sw || Ward Bow
|-
| lwb || Long War Bow
| 8lw || Gothic Bow
| 6lw || Hydra Bow
|-
| style="background:#3b2a1a" colspan="8" |
|-
| lxb || Light Crossbow
| 8lx || Arbalest
| 6lx || Pellet Bow
|-
| mxb || Crossbow
| 8mx || Siege Crossbow
| 6mx || Gorgon Crossbow
|-
| hxb || Heavy Crossbow
| 8hx || Ballista
| 6hx || Colossus Crossbow
|-
| rxb || Repeating Crossbow
| 8rx || Chu-Ko-Nu
| 6rx || Demon Crossbow
|-
| style="background:#3b2a1a" colspan="8" |
|-
| sst || Short Staff
| 8ss || Jo Staff
| 6ss || Walking Stick
|-
| lst || Long Staff
| 8ls || Quarterstaff
| 6ls || Stalagmite
|-
| cst || Gnarled Staff
| 8cs || Cedar Staff
| 6cs || Elder Staff
|-
| bst || Battle Staff
| 8bs || Gothic Staff
| 6bs || Shillelagh
|-
| wst || War Staff
| 8ws || Rune Staff
| 6ws || Archon Staff
|-
| style="background:#3b2a1a" colspan="8" |
|-
| wnd || Wand
| 9wn || Burnt Wand
| 7wn || Polished Wand
|-
| ywn || Yew Wand
| 9yw || Petrified Wand
| 7yw || Ghost Wand
|-
| bwn || Bone Wand
| 9bw || Tomb Wand
| 7bw || Lich Wand
|-
| gwn || Grim Wand
| 9gw || Grave Wand
| 7gw || Unearthed Wand
|-
| style="background:#3b2a1a" colspan="8" |
|-
| scp || Scepter
| 9sc || Rune Scepter
| 7sc || Mighty Scepter
|-
| gsc || Grand Scepter
| 9qs || Holy Water Sprinkler
| 7qs || Seraph Rod
|-
| wsp || War Scepter
| 9ws || Divine Scepter
| 7ws || Caduceus
|-
| style="background:#3b2a1a" colspan="8" |
|-
| ktr || Katar
| 9ar || Quhab
| 7ar || Suwayyah
|-
| wrb || Wrist Blade
| 9wb || Wrist Spike
| 7wb || Wrist Sword
|-
| axf || Hatchet Hands
| 9xf || Fascia
| 7xf || War Fist
|-
| ces || Cestus
| 9cs || Hand Scythe
| 7cs || Battle Cestus
|-
| clw || Claws
| 9lw || Greater Claws
| 7lw || Feral Claws
|-
| btl || Blade Talons
| 9tw || Greater Talons
| 7tw || Runic Talons
|-
| skr || Scissors Katar
| 9qr || Scissors Quhab
| 7qr || Scissors Suwayyah
|-
| style="background:#3b2a1a" colspan="8" |
|-
| ob1 || Eagle Orb
| ob6 || Glowing Orb
| obb || Heavenly Stone
|-
| ob2 || Sacred Globe
| ob7 || Crystalline Globe
| obc || Eldritch Orb
|-
| ob3 || Smoked Sphere
| ob8 || Cloudy Sphere
| obd || Demon Heart
|-
| ob4 || Clasped Orb
| ob9 || Sparkling Ball
| obe || Vortex Orb
|-
| ob5 || Jared's Stone
| oba || Swirling Crystal
| obf || Dimensional Shard
|-
| style="background:#3b2a1a" colspan="8" |
|-
| am1 || Stag Bow
| am6 || Ashwood Bow
| amb || Matriarchal Bow
|-
| am2 || Reflex Bow
| am7 || Ceremonial Bow
| amc || Grand Matron Bow
|-
| am3 || Maiden Spear
| am8 || Ceremonial Spear
| amd || Matriarchal Spear
|-
| am4 || Maiden Pike
| am9 || Ceremonial Pike
| ame || Matriarchal Pike
|-
| am5 || Maiden Javelin
| ama || Ceremonial Javelin
| amf || Matriarchal Javelin
|}
 
===== Other Items ===== <!--T:104-->
 
<!--T:105-->
====== Potions ======
{| class="wikitable"
! Code !! Item
! style="background:#170d0a; border-top: 1px solid #170d0a; border-bottom: 1px solid #170d0a;" rowspan="6" |
! Code !! Item
! style="background:#170d0a; border-top: 1px solid #170d0a; border-bottom: 1px solid #170d0a;" rowspan="6" |
! Code !! Item
! style="background:#170d0a; border-top: 1px solid #170d0a; border-bottom: 1px solid #170d0a;" rowspan="4" |
! Code !! Item
! style="background:#170d0a; border-top: 1px solid #170d0a; border-bottom: 1px solid #170d0a;" rowspan="4" |
! Code !! Item
|-
| rvl || Full Rejuvenation Potion
| hp1 || Minor Healing Potion
| mp1 || Minor Mana Potion
| opl || Fulminating Potion
| gpl || Strangling Potion
|-
| rvs || Rejuvenation Potion
| hp2 || Lesser Healing Potion
| mp2 || Lesser Mana Potion
| opm || Exploding Potion
| gpm || Choking Potion
|-
| yps || Antidote Potion
| hp3 || Healing Potion
| mp3 || Mana Potion
| ops || Oil Potion
| gps || Rancid Potion
|-
| wms || Thawing Potion
| hp4 || Greater Healing Potion
| mp4 || Greater Mana Potion
| style="background:#170d0a; border-bottom: 1px solid #170d0a; border-right: 1px solid #170d0a;" rowspan="2" colspan="6" |
|-
| vps || Stamina Potion
| hp5 || Super Healing Potion
| mp5 || Super Mana Potion
|}
 
<!--T:106-->
====== Gems ======
Also see [[Item_Filtering#Info_Codes|GEMLEVEL and GEMTYPE]]
{| class="wikitable"
! Code !! Item
! style="background:#170d0a; border-top: 1px solid #170d0a; border-bottom: 1px solid #170d0a;" rowspan="8" |
! Code !! Item
! style="background:#170d0a; border-top: 1px solid #170d0a; border-bottom: 1px solid #170d0a;" rowspan="8" |
! Code !! Item
! style="background:#170d0a; border-top: 1px solid #170d0a; border-bottom: 1px solid #170d0a;" rowspan="8" |
! Code !! Item
! style="background:#170d0a; border-top: 1px solid #170d0a; border-bottom: 1px solid #170d0a;" rowspan="8" |
! Code !! Item
|-
| gcv || Chipped Amethyst
| gfv || Flawed Amethyst
| gsv || Amethyst
| gzv || Flawless Amethyst
| gpv || Perfect Amethyst
|-
| gcy || Chipped Topaz
| gfy || Flawed Topaz
| gsy || Topaz
| gly || Flawless Topaz
| gpy || Perfect Topaz
|-
| gcb || Chipped Sapphire
| gfb || Flawed Sapphire
| gsb || Sapphire
| glb || Flawless Sapphire
| gpb || Perfect Sapphire
|-
| gcg || Chipped Emerald
| gfg || Flawed Emerald
| gsg || Emerald
| glg || Flawless Emerald
| gpg || Perfect Emerald
|-
| gcr || Chipped Ruby
| gfr || Flawed Ruby
| gsr || Ruby
| glr || Flawless Ruby
| gpr || Perfect Ruby
|-
| gcw || Chipped Diamond
| gfw || Flawed Diamond
| gsw || Diamond
| glw || Flawless Diamond
| gpw || Perfect Diamond
|-
| skc || Chipped Skull
| skf || Flawed Skull
| sku || Skull
| skl || Flawless Skull
| skz || Perfect Skull
|}
 
<!--T:107-->
{| class="wikitable"
! Code !! Item
! style="background:#170d0a; border-top: 1px solid #170d0a; border-bottom: 1px solid #170d0a;" rowspan="8" |
! Code !! Item
|-
| gzvs || Flawless Amethyst Stack
| gpvs || Perfect Amethyst Stack
|-
| glys || Flawless Topaz Stack
| gpys || Perfect Topaz Stack
|-
| glbs || Flawless Sapphire Stack
| gpbs || Perfect Sapphire Stack
|-
| glgs || Flawless Emerald Stack
| gpgs || Perfect Emerald Stack
|-
| glrs || Flawless Ruby Stack
| gprs || Perfect Ruby Stack
|-
| glws || Flawless Diamond Stack
| gpws || Perfect Diamond Stack
|-
| skls || Flawless Skull Stack
| skzs || Perfect Skull Stack
|}
 
<!--T:108-->
====== Runes ======
Also see [[Item_Filtering#Info_Codes|RUNE]]
 
<!--T:109-->
{| class="wikitable"
! Code !! Item
! style="background:#170d0a; border-top: 1px solid #170d0a; border-bottom: 1px solid #170d0a;" rowspan="12" |
! Code !! Item
! style="background:#170d0a; border-top: 1px solid #170d0a; border-bottom: 1px solid #170d0a;" rowspan="12" |
! Code !! Item
|-
| r01 || El Rune || r12 || Sol Rune || r23 || Mal Rune
|-
| r02 || Eld Rune || r13 || Shael Rune || r24 || Ist Rune
|-
| r03 || Tir Rune || r14 || Dol Rune || r25 || Gul Rune
|-
| r04 || Nef Rune || r15 || Hel Rune || r26 || Vex Rune
|-
| r05 || Eth Rune || r16 || Io Rune || r27 || Ohm Rune
|-
| r06 || Ith Rune || r17 || Lum Rune || r28 || Lo Rune
|-
| r07 || Tal Rune || r18 || Ko Rune || r29 || Sur Rune
|-
| r08 || Ral Rune || r19 || Fal Rune || r30 || Ber Rune
|-
| r09 || Ort Rune || r20 || Lem Rune || r31 || Jah Rune
|-
| r10 || Thul Rune || r21 || Pul Rune || r32 || Cham Rune
|-
| r11 || Amn Rune || r22 || Um Rune || r33 || Zod Rune
|}
 
<!--T:110-->
{| class="wikitable"
! Code !! Item
! style="background:#170d0a; border-top: 1px solid #170d0a; border-bottom: 1px solid #170d0a;" rowspan="12" |
! Code !! Item
! style="background:#170d0a; border-top: 1px solid #170d0a; border-bottom: 1px solid #170d0a;" rowspan="12" |
! Code !! Item
|-
| r01s || El Rune Stack || r12s || Sol Rune Stack || r23s || Mal Rune Stack
|-
| r02s || Eld Rune Stack || r13s || Shael Rune Stack || r24s || Ist Rune Stack
|-
| r03s || Tir Rune Stack || r14s || Dol Rune Stack || r25s || Gul Rune Stack
|-
| r04s || Nef Rune Stack || r15s || Hel Rune Stack || r26s || Vex Rune Stack
|-
| r05s || Eth Rune Stack || r16s || Io Rune Stack || r27s || Ohm Rune Stack
|-
| r06s || Ith Rune Stack || r17s || Lum Rune Stack || r28s || Lo Rune Stack
|-
| r07s || Tal Rune Stack || r18s || Ko Rune Stack || r29s || Sur Rune Stack
|-
| r08s || Ral Rune Stack || r19s || Fal Rune Stack || r30s || Ber Rune Stack
|-
| r09s || Ort Rune Stack || r20s || Lem Rune Stack || r31s || Jah Rune Stack
|-
| r10s || Thul Rune Stack || r21s || Pul Rune Stack || r32s || Cham Rune Stack
|-
| r11s || Amn Rune Stack || r22s || Um Rune Stack || r33s || Zod Rune Stack
|}
 
<!--T:111-->
====== Quest Items ======
<div><ul style="margin-left:0px;">
<li style="display:inline-table; margin-left:0px; margin-right:8px;">
{| class="wikitable"
! Code !! Item
|-
| bks || Scroll of Inifuss
|-
| bkd || Key to the Cairn Stones
|-
| hdm || Horadric Malus
|-
| tr1 || Horadric Scroll
|-
| ass || Book of Skill
|-
| box || Horadric Cube
|-
| msf || Staff of Kings
|-
| vip || Viper Amulet
|-
| hst || Horadric Staff
|-
| j34 || Jade Figurine
|-
| g34 || Golden Bird
|-
| xyz || Potion of Life
|-
| g33 || Gidbinn
|-
| bbb || Lam Esen's Tome
|-
| qbr || Khalim's Brain
|-
| qey || Khalim's Eye
|-
| qhr || Khalim's Heart
|-
| qf1 || Khalim's Flail
|-
| qf2 || Khalim's Will
|-
| mss || Mephisto's Soulstone
|-
| hfh || Hellforge Hammer
|-
| ice || Malah's Potion
|-
| tr2 || Scroll of Resistance
|}
</li>
<li style="display:inline-table; margin-left:0px; margin-right:8px;">
{| class="wikitable"
! Code !! Item !! Details
|-
| tes || Twisted Essence of Suffering || Andariel & Duriel
|-
| ceh || Charged Essence of Hatred || Mephisto
|-
| bet || Burning Essence of Terror || Diablo
|-
| fed || Festering Essence of Destruction || Baal
|-
| toa || Token of Absolution ||
|-
| pk1 || Key of Terror || Countess
|-
| pk2 || Key of Hatred || Summoner
|-
| pk3 || Key of Destruction || Nihlathak
|-
| dhn || Diablo's Horn || Lilith (uber Andariel)
|-
| bey || Baal's Eye || Duriel (uber)
|-
| mbr || Mephisto's Brain || Izual (uber)
|}
</li>
</ul></div>
* Unique quest items (not essences/tokens or uber keys/organs) cannot be sold so they have no price
 
<!--T:112-->
====== PD2 Items ======
<div><ul style="margin-left:0px;">
<li style="display:inline-table; margin-left:0px; margin-right:8px;">
{| class="wikitable"
|+ Maps & Arenas
! Code !! Item !! Tier
|-
| t11 || Ruins of Viz-Jun Map || 2
|-
| t12 || Horazon's Memory Map || 1
|-
| t13 || Bastion Keep Map || 1
|-
| t14 || Sanatorium Map || 2
|-
| t15 || Royal Crypts Map || 2
|-
| t16 || Ruined Cistern Map || 1
|-
| t21 || Phlegethon Map || 1
|-
| t22 || Torajan Jungle Map || 1
|-
| t23 || Arreat Battlefield Map || 1
|-
| t24 || Tomb of Zoltun Kulle Map || 3
|-
| t25 || Sewers of Harrogath Map || 3
|-
| t26 || Shadows of Westmarch Map || 2
|-
| t31 || River of Blood Map || 3
|-
| t32 || Throne of Insanity Map || 3
|-
| t33 || Lost Temple Map || 1
|-
| t34 || Ancestral Trial Map || 2
|-
| t35 || Blood Moon Map || 3
|-
| t36 || Fall of Caldeum Map || 2
|-
| t37 || Pandemonium Citadel Map || 3
|-
| t38 || Canyon of Sescheron Map || 3
|-
| t39 || Kehjistan Marketplace Map || 3
|-
| t39 || Ashen Plains Map || 3
|-
| t41 || Cathedral of Light Map || 4 (dungeon)
|-
| t42 || Plains of Torment Map || 4 (dungeon)
|-
| t43 || Sanctuary of Sin Map || 4 (dungeon)
|-
| t61 || Desert Duel Arena || PvP arena
|-
| t62 || Moor Duel Arena || PvP arena
|}
</li>
<li style="display:inline-table; margin-left:0px; margin-right:8px;">
{| class="wikitable"
|+ Uber-Related
! Code !! Item !! Details
|-
| uba || Relic of the Ancients|| accesses Uber Ancients
|-
| ubaa || Sigil of Madawc || Uber Ancients ingredient, from T1 maps
|-
| ubab || Sigil of Talic || Uber Ancients ingredient, from T2 maps
|-
| ubac || Sigil of Korlic || Uber Ancients ingredient, from T3 maps
|-
| ubtm || Pandemonium Talisman || accesses Uber Tristram
|-
| dcma || Vision of Terror || accesses Diablo Clone
|-
| dcso || Prime Evil Soul || DClone ingredient, from Hell Diablo/Baal
|-
| dcbl || Pure Demonic Essence || Diablo Clone ingredient, from map bosses
|-
| dcho || Black Soulstone || Diablo Clone ingredient, from Uber Tristram
|-
| rtma || Voidstone || accesses Rathma
|-
| rtmv || Splinter of the Void || Rathma ingredient, from Mendeln map event
|-
| rtmo || Trang-Oul's Jawbone || Rathma ingredient, from undead
|-
| rtmf || Ancient Bone Fragments || Trang-Oul's Jawbone ingredient (legacy)
|}
</li>
<li style="display:inline-table; margin-left:0px; margin-right:8px;">
{| class="wikitable"
|+ Map Orbs
! Code !! Item !! Details
|-
| imma || Arcane Orb || upgrade map (common -> magic)
|-
| imra || Zakarum Orb || upgrade map (common -> rare)
|-
| upma || Angelic Orb || upgrade map (magic -> rare)
|-
| scou || Orb of Destruction || downgrade map (to common)
|-
| rera || Horadrim Orb || reroll rare map
|-
| upmp || Cartographer's Orb || combine maps into a higher tier
|-
| fort || Orb of Fortification || halves monsters & doubles loot/experience/life
|-
| scrb || Horadrim Scarab || turns t3 maps into dungeons
|}
</li>
<li style="display:inline-table; margin-left:0px; margin-right:8px;">
{| class="wikitable"
|+ General-Purpose
! Code !! Item !! Details
|-
| wss || Worldstone Shard || corrupts items
|-
| lbox || Larzuk's Puzzlebox || sockets items
|-
| lpp || Larzuk's Puzzlepiece || sockets items (not uniques/sets)
|-
| lmal || Larzuk's Malus || sockets items (1 socket)
|-
| jewf || Jewel Fragments || stackable jewel
|-
| lsvl || Vial of Lightsong || Makes item Ethereal (drops anywhere, 1 in 7.5 million chance)
|-
| llmr || Lilith's Mirror || Mirrors items (drops anywhere, 1 in 25 million chance)
|-
| rkey || Skeleton Key || unlimited-use key (drops anywhere, 1 in 5 million chance)
|-
| rtp || Horadrim Navigator || unlimited TP tome, from Rathma
|-
| rid || Horadrim Almanac || unlimited ID tome, from Rathma
|-
| cwss || Tainted Worldstone Shard || corrupts Annihilus, from Rathma
|}
</li>
<li style="display:inline-table; margin-left:0px; margin-right:8px;">
{| class="wikitable"
|+ Equipment
! Code !! Item !! Notes
|-
| rar || Cage of the Unsullied || Boneweave (uhn doesn't apply, but ARMOR/CHEST do)
|-
| rbe || Band of Skulls || Troll Belt (utc doesn't apply, but ARMOR/BELT do)
|-
| ram || The Third Eye || Amulet (amu doesn't apply)
|}
</li>
</ul></div>
 
<!--T:113-->
====== Misc ======
<div><ul style="margin-left:0px;">
<li style="display:inline-table; margin-left:0px; margin-right:8px;">
{| class="wikitable"
! Code !! Item
|-
| tsc || Scroll of Town Portal
|-
| isc || Scroll of Identify
|-
| tbk || Tome of Town Portal
|-
| ibk || Tome of Identify
|-
| key || Key
|-
| leg || Wirt's Leg
|-
| ear || Player Ear
|-
| std || Standard of Heroes
|}
</li>
<li style="display:inline-table; margin-left:0px; margin-right:8px;">
{| class="wikitable"
! Code !! Item
|-
| cm1 || Small Charm
|-
| cm2 || Large Charm
|-
| cm3 || Grand Charm
|-
| jew || Jewel
|-
| rin || Ring
|-
| amu || Amulet
|-
| aqv || Arrows
|-
| cqv || Bolts
|}
</i>
</ul></div>
* Tome of Town Portal and Tome of Identify can only have their name modified, not their description
 
<!--T:114-->
<!-- End of "Boolean Conditions" category -->
 
<!--T:115-->
=== Value Conditions ===
==== Info Codes ====
Line 1,829 ⟶ 635:
! Code !! Description !! Details
|-
| GOLD || Gold || can be hidden, but not modified (always displays as "N Gold")<br>gold is automatically picked up (hiding it does not prevent this)
|-
| GEMLEVEL<br>GEM || gem quality level || 1 - 5 (Chipped-Perfect)<br>doesn't apply to ''unstacked'' Flawless/Perfect gems
|-
| GEMTYPE || gem type || 1 - 7 (Amethyst-, Diamond, Emerald, Ruby, Sapphire, Topaz, Skull)
|-
| RUNE || rune number || 1 - 33 (El-Zod)
|-
| QTY || quantity ||
|-
| DEF || total defense ||
|-
| LVLREQ || level requirement ||
Line 1,855 ⟶ 659:
| CLVL || character level ||
|-
| DIFF || difficulty || 0 - 2 (Normal-, Nightmare, Hell)
|-
| MAPID || item'scurrent initial locationzone || 1 - 175 (see [[Item_Filtering#MAPID_IDs|details]])
|-
| MAPTIER || map tier || 0 - 5 (PvP, T1, T2, T3, Dungeon, Unique)
| SUFFIX || item suffix || 1 - 849 (see [[Item_Filtering#SUFFIX_and_PREFIX_IDs|details]])
|-
| PREFIX || item prefix || 8501 - 1644805 (see [[Item_Filtering#SUFFIX_and_PREFIX_IDsSUFFIX,_PREFIX,_and_AUTOMOD_IDs|details]])
|-
| SUFFIX || item suffix || 1 - 900 (see [[Item_Filtering#SUFFIX,_PREFIX,_and_AUTOMOD_IDs|details]])
| FILTLVL || filter strictness level || 1 - 9
|-
| AUTOMOD || item automod || 1 - 44 (see [[Item_Filtering#SUFFIX,_PREFIX,_and_AUTOMOD_IDs|details]])
|-
| FILTLVL || filter strictness level || 0 - 9 (Show All Items, up to 9 custom levels)
|}
 
<!--T:116-->
There is currently a [[Bugs|bug]] with hiding stacked gems/runes - if the lootfilter attempts to hide them, they'll usually be loaded regardless and appear with an empty name.
 
<!--T:117-->
==== Named Attribute Codes ====
{| class="wikitable"
! Code !! Description !! Item Appearance !! Details
|-
| SOCKETS<br>SOCK || total sockets || Socketed (N) ||
|-
| DEF || total defense || Defense: N<br>+N Defense ||
|-
| ED || enhanced defense/damage || +N% Enhanced Defense<br>+N% Enhanced Damage || refers to defense for armor,<br>damage for weapons
|-
| EDEF || enhanced defense || +N% Enhanced Defense || Includes bonuses from runewords and sockets<br>(ED does '''not''' include these)
|-
| EDAM || enhanced damage || +N% Enhanced Damage || Includes bonuses from runewords and sockets<br>(ED does '''not''' include these)
|-
| MAXDUR || max durability || Increase Maximum Durability N% ||
Line 1,930 ⟶ 740:
| FOOLS || fool's mod || +X to Attack Rating (Based on Character Level)<br>+Y to Maximum Damage (Based on Character Level) || boolean condition
|}
Some attributes (STR, DEX, LIFE, MANA, FRES, CRES, LRES, PRES) can have addition applied between them prior to the condition being evaluated.
 
==== Numbered Attribute Codes ====
<!--T:118-->
The relevant number for each code is shown as N. If N is absent, it is often either 0 or 1. For codes that refer to attributes which are based on character level, N is often a multiple of Y (as in "+Y per Character Level") such as 8Y for STAT214 or 2Y for STAT224.
<code>ItemDisplay[RARE FRES+CRES+LRES+PRES>79]: %NAME% %RED%!</code> <span style="color:gray;">''appends a red '''!''' to rares with 80+ total resistance''</span>
 
Some numbered attribute codes (shown in <span style="color:gray;">gray</span>) refer to the same attributes as [[Item_Filtering#Named_Attribute_Codes|named attribute codes]] or other named codes, which can be used instead for better readability.
 
To refer to stats that have multiple parts such as chance-to-cast effects or skill charges, the '''MULTI''' condition must be used instead of '''STAT''': see [[Item_Filtering#Multi-layered_Stats|Multi-Layered Stats]]
<!--T:119-->
It seems values get converted to unsigned integers '''before comparison'''. For negative values, this means that instead of counting backwards from 0, they count backwards from the maximum storeable value (a few billion). The following examples illustrate this point, but they're outdated since medium/heavy armors no longer have movement speed penalties.
 
All these numbered attribute '''STAT''' codes refer to individual items in the same way that most codes do - they are "immutable" and don't change depending on the character viewing the item. There are also corresponding '''CHARSTAT''' codes for each attribute which are "mutable" and can change based on other factors - rather than checking whether an ''item'' has the attribute, these codes check whether the ''character'' has the attribute. In most cases, that means checking whether the character is wearing an item with the attribute. But there are also some "non-item" codes such as '''CHARSTAT14''' and '''CHARSTAT15''' which refer to how much gold the character is carrying and how much gold they have in their stash, respectively.
<!--T:120-->
<code>ItemDisplay[NMAG !ELT (FRW=-5 OR FRW=-10)]:</code> <span style="color:gray;">''hides regular non-elite medium/heavy armors''</span>
 
<!--T:121-->
<code>ItemDisplay[NMAG !ELT FRW>1000]:</code> <span style="color:gray;">''hides regular non-elite medium/heavy armors''</span>
 
<!--T:122-->
<code>ItemDisplay[NMAG !ELT FRW>-20]:</code> <span style="color:gray;">''hides regular non-elite medium/heavy armors''</span>
 
<!--T:123-->
==== Numbered Attribute Codes ====
The relevant number for each code is shown as N. In many cases, if N is absent, it is either 0 or 1. For codes that refer to attributes which are based on character level, N is often a multiple of Y (+Y per Character Level) such as 8Y for STAT214 or 2Y for STAT224.
 
<!--T:124-->
Some numbered attribute codes (shown in <span style="color:gray;">gray</span>) refer to the same attributes as [[Item_Filtering#Named_Attribute_Codes|named attribute codes]] or other named codes, which can be used instead for better readability.
<div><ul style="margin-left:0px;">
<li style="display:inline-table; margin-left:0px; margin-right:8px;">
Line 2,023 ⟶ 819:
|-
| STAT81 || Knockback
|-
| <span style="color:gray;">STAT83</span> || +N to Amazon Skill Levels
|-
| STAT85 || +N% to Experience Gained
Line 2,034 ⟶ 828:
| STAT89 || +N to Light Radius
|-
| STAT91 || Requirements -+N%
|-
| <span style="color:gray;">STAT93</span> || +N% Increased Attack Speed
Line 2,105 ⟶ 899:
|-
| style="font-size:90%;" | STAT158 || Fires Explosive Arrows or Bolts
|-
| style="font-size:90%;" | <span style="color:gray;">STAT188</span> || +N to Bow and Crossbow Skills
|-
| style="font-size:90%;" | <span style="color:gray;">STAT194</span> || Socketed (N)
Line 2,112 ⟶ 904:
| style="font-size:90%;" | <span style="color:gray;">STAT252</span> || style="font-size:78%;" | Repairs X Durability in Y Seconds ''(N = 100/Y)''
|-
| style="font-size:90%;" | STAT360 || Corrupted ''Corruption ([[Item_Filtering#STAT360_IDs|values for N]])''
|-
| style="font-size:90%;" | STAT422 || Replenishes 1 Charge in 3 Seconds
Line 2,120 ⟶ 912:
| style="font-size:90%;" | STAT425 || -N% to Enemy Physical Resistance
|-
| style="font-size:90%;" | STAT486 || ''Mirrored''
|-
| style="font-size:90%;" | STAT477 || style="font-size:90%;" | ''transform_dye (N: black=4, white=21)''
|-
| style="font-size:90%;" | STAT501 || style="font-size:92%;" | +N Open Wounds Damage per Second
|-
| style="font-size:90%;" | STAT504 || Curse Resistance +N%
|}
</li>
<li style="display:inline-table; margin-left:0px; margin-right:8px;">
 
<!--T:125-->
===== Elements =====
{| class="wikitable"
Line 2,253 ⟶ 1,050:
<li style="display:inline-table; margin-left:0px; margin-right:0px;">
 
<!--T:126-->
===== Based on Character Level =====
{| class="wikitable"
Line 2,332 ⟶ 1,128:
|-
! Code !! Item Appearance
|-
| style="font-size:90%;" | STAT369 || ''map_defense''
|-
| style="font-size:90%;" | STAT370 || ''Map'' Magic Find: +N%
Line 2,341 ⟶ 1,139:
| style="font-size:90%;" | STAT373 || ''Map'' Experience: +N%
|-
| style="font-size:90%;" | STAT374 || ''Map'' MonsterArea RarityLevel: +N%
|-
| style="font-size:90%;" | STAT375 || ''map_glob_monsterrarity''
|-
| style="font-size:90%;" | STAT376 || ''map_mon_firemindam''
|-
| style="font-size:90%;" | STAT377 || ''map_mon_firemaxdam''
|-
| style="font-size:90%;" | STAT378 || ''map_mon_lightmindam''
|-
| style="font-size:90%;" | STAT379 || ''map_mon_lightmaxdam''
|-
| style="font-size:90%;" | STAT380 || ''map_mon_magicmindam''
|-
| style="font-size:90%;" | STAT381 || ''map_mon_magicmaxdam''
|-
| style="font-size:90%;" | STAT382 || ''map_mon_coldmindam''
|-
| style="font-size:90%;" | STAT383 || ''map_mon_coldmaxdam''
|-
| style="font-size:90%;" | STAT384 || ''map_mon_coldlength''
|-
| style="font-size:90%;" | STAT385 || ''map_mon_poisonmindam''
|-
| style="font-size:90%;" | STAT386 || ''map_mon_poisonmaxdam''
|-
| style="font-size:90%;" | STAT387 || ''map_mon_poisonlength''
|-
| style="font-size:90%;" | STAT388 || Monsters have +N% to Fire Skill Damage
Line 2,394 ⟶ 1,218:
|-
| style="font-size:90%;" | STAT413 || Players have -N Drain Life
|-
| style="font-size:90%;" | STAT414 || ''map_mon_passive_fire_pierce''
|-
| style="font-size:90%;" | STAT415 || ''map_mon_passive_ltng_pierce''
|-
| style="font-size:90%;" | STAT416 || ''map_mon_passive_cold_pierce''
|-
| style="font-size:90%;" | STAT417 || ''map_mon_passive_pois_pierce''
|-
| style="font-size:90%;" | STAT418 || ''map_play_maxfireresist''
|-
| style="font-size:90%;" | STAT419 || ''map_play_maxlightresist''
|-
| style="font-size:90%;" | STAT420 || ''map_play_maxcoldresist''
|-
| style="font-size:90%;" | STAT421 || ''map_play_maxpoisonresist''
|-
| style="font-size:90%;" | STAT426 || Monsters have +N% Enhanced Physical Damage
Line 2,434 ⟶ 1,274:
|-
| style="font-size:90%;" | STAT452 || Players have N% Attack and Cast Speed
|-
| style="font-size:90%;" | STAT454 || ''map_play_maxhp_percent''
|-
| style="font-size:90%;" | STAT455 || ''map_play_maxmana_percent''
|-
| style="font-size:90%;" | STAT456 || ''map_play_damageresist''
|-
| style="font-size:90%;" | STAT457 || Players have N% to Velocity
|-
| style="font-size:90%;" | STAT458 || Heoric
|-
| style="font-size:90%;" | STAT467 || ''map_play_lightradius''
|-
| style="font-size:90%;" | STAT470 || Map contains Burning Souls
|-
| style="font-size:90%;" | STAT471 || Map contains Fetishes
|-
| style="font-size:90%;" | STAT493 || ''map_glob_skirmish_mode''
|-
| style="font-size:90%;" | STAT494 || ''map_mon_dropjewelry''
|-
| style="font-size:90%;" | STAT495 || ''map_mon_dropweapons''
|-
| style="font-size:90%;" | STAT496 || ''map_mon_droparmor''
|-
| style="font-size:90%;" | STAT497 || ''map_mon_dropcrafting''
|-
| style="font-size:90%;" | STAT498 || ''map_glob_extra_boss''
|-
| style="font-size:90%;" | STAT499 || ''map_glob_add_mon_shriek''
|-
| style="font-size:90%;" | STAT500 || Area Contains a Random Event
|-
| style="font-size:90%;" | STAT502 || ''map_mon_dropcharms''
|-
| style="font-size:90%;" | STAT503 || ''map_glob_dropcorrupted''
|-
| style="font-size:90%;" | STAT186 || ''map_glob_boss_dropskillers''
|-
| style="font-size:90%;" | STAT187 || ''map_glob_boss_dropcorruptedunique''
|-
| style="font-size:90%;" | STAT505 || ''map_glob_boss_dropfacet''
|-
| style="font-size:90%;" | STAT506 || ''map_mon_dropjewels''
|-
|}
{| class="wikitable mw-collapsible mw-collapsed"
Line 2,447 ⟶ 1,324:
|-
! Code !! Item Appearance
|-
| STAT4 || ''statpts''
|-
| STAT5 || ''newskills''
|-
| STAT6 || ''hitpoints''
|-
| STAT8 || ''mana''
|-
| STAT10 || ''stamina''
|-
| STAT12 || ''level''
|-
| STAT13 || ''experience''
|-
| STAT14 || ''gold''
|-
| STAT15 || ''goldbank''
|-
| STAT26 || ''manarecovery''
|-
| STAT29 || ''lastexp''
|-
| STAT30 || ''nextexp''
|-
| STAT47 || ''damageaura''
|-
| STAT61 || ''lifedrainmaxdam''
|-
| STAT63 || ''manadrainmaxdam''
|-
| STAT64 || ''stamdrainmindam''
|-
| STAT65 || ''stamdrainmaxdam''
|-
| STAT66 || ''stunlength''
|-
| STAT67 || ''velocitypercent''
|-
| STAT69 || ''other_animrate''
|-
| STAT71 || ''value''
|-
| STAT82 || ''item_timeduration''
|-
| STAT90 || ''item_lightcolor''
|-
| STAT92 || ''item_levelreq''
|-
| STAT94 || ''item_levelreqpct''
|-
| STAT95 || ''lastblockframe''
|-
| STAT98 || ''state''
|-
| style="font-size:90%;" | STAT100 || ''monster_playercount''
|-
| style="font-size:90%;" | STAT101 || ''skill_poison_override_length''
|-
| style="font-size:90%;" | STAT103 || ''skill_bypass_undead''
|-
| style="font-size:90%;" | STAT104 || ''skill_bypass_demons''
|-
| style="font-size:90%;" | STAT106 || ''skill_bypass_beasts''
|-
| style="font-size:90%;" | STAT125 || ''item_throwable''
|-
| style="font-size:90%;" | STAT129 || ''ironmaiden_level''
|-
| style="font-size:90%;" | STAT130 || ''lifetap_level''
|-
| style="font-size:90%;" | STAT131 || ''thorns_percent''
|-
| style="font-size:90%;" | STAT132 || ''bonearmor''
|-
| style="font-size:90%;" | STAT133 || ''bonearmormax''
|-
| style="font-size:90%;" | STAT137 || ''item_kickdamage''
|-
| style="font-size:90%;" | STAT156 || ''item_pierce''
|-
| style="font-size:90%;" | STAT161 || ''skill_handofathena''
|-
| style="font-size:90%;" | STAT162 || ''skill_staminapercent''
|-
| style="font-size:90%;" | STAT163 || ''skill_passive_staminapercent''
|-
| style="font-size:90%;" | STAT164 || ''skill_concentration''
|-
| style="font-size:90%;" | STAT165 || ''skill_enchant''
|-
| style="font-size:90%;" | STAT166 || ''skill_pierce''
|-
| style="font-size:90%;" | STAT167 || ''skill_conviction''
|-
| style="font-size:90%;" | STAT168 || ''skill_chillingarmor''
|-
| style="font-size:90%;" | STAT169 || ''skill_frenzy''
|-
| style="font-size:90%;" | STAT170 || ''skill_decrepify''
|-
| style="font-size:90%;" | STAT171 || ''skill_armor_percent''
|-
| style="font-size:90%;" | STAT172 || ''alignment''
|-
| style="font-size:90%;" | STAT173 || ''target0''
|-
| style="font-size:90%;" | STAT174 || ''target1''
|-
| style="font-size:90%;" | STAT175 || ''goldlost''
|-
| style="font-size:90%;" | STAT176 || ''conversion_level''
|-
| style="font-size:90%;" | STAT177 || ''conversion_maxhp''
|-
| style="font-size:90%;" | STAT178 || ''unit_dooverlay''
|-
| style="font-size:90%;" | STAT179 || ''attack_vs_montype''
|-
| style="font-size:90%;" | STAT180 || ''damage_vs_montype''
|-
| style="font-size:90%;" | STAT181 || ''fade''
|-
| style="font-size:90%;" | STAT182 || ''armor_override_percent''
|-
| style="font-size:90%;" | STAT183 || ''equipped_eth''
|-
| style="font-size:90%;" | STAT184 || ''missing_hp''
|-
| style="font-size:90%;" | STAT185 || ''uber_difficulty''
|-
| style="font-size:90%;" | STAT189 || ''openwounds_stack''
|-
| style="font-size:90%;" | STAT190 || ''curse_slots''
|-
| style="font-size:90%;" | STAT191 || ''item_skillonequip''
|-
| style="font-size:90%;" | STAT213 || ''item_mindamage_energy''
|-
| style="font-size:90%;" | STAT215 || ''item_armorpercent_perlevel''
|-
| style="font-size:90%;" | STAT247 || ''item_crushingblow_perlevel''
|-
| style="font-size:90%;" | STAT248 || ''item_openwounds_perlevel''
|-
| style="font-size:90%;" | STAT251 || ''item_find_gems_perlevel''
|-
| style="font-size:90%;" | STAT253 || ''item_replenish_quantity''
|-
| style="font-size:90%;" | STAT254 || ''item_extra_stack''
|-
| style="font-size:90%;" | STAT255 || ''item_find_item''
|-
| style="font-size:90%;" | STAT256 || ''item_slash_damage''
|-
| style="font-size:90%;" | STAT257 || ''item_slash_damage_percent''
|-
| style="font-size:90%;" | STAT258 || ''item_crush_damage''
|-
| style="font-size:90%;" | STAT259 || ''item_crush_damage_percent''
|-
| style="font-size:90%;" | STAT260 || ''item_thrust_damage''
|-
| style="font-size:90%;" | STAT261 || ''item_thrust_damage_percent''
|-
| style="font-size:90%;" | STAT262 || ''item_absorb_slash''
|-
| style="font-size:90%;" | STAT263 || ''item_absorb_crush''
|-
| style="font-size:90%;" | STAT264 || ''item_absorb_thrust''
|-
| style="font-size:90%;" | STAT265 || ''item_absorb_slash_percent''
|-
| style="font-size:90%;" | STAT266 || ''item_absorb_crush_percent''
|-
| style="font-size:90%;" | STAT267 || ''item_absorb_thrust_percent''
|-
| style="font-size:90%;" | STAT305 || ''item_pierce_cold''
|-
| style="font-size:90%;" | STAT306 || ''item_pierce_fire''
|-
| style="font-size:90%;" | STAT307 || ''item_pierce_ltng''
|-
| style="font-size:90%;" | STAT308 || ''item_pierce_pois''
|-
| style="font-size:90%;" | STAT309 || ''item_damage_vs_monster''
|-
| style="font-size:90%;" | STAT310 || ''item_damage_percent_vs_monster''
|-
| style="font-size:90%;" | STAT311 || ''item_tohit_vs_monster''
|-
| style="font-size:90%;" | STAT312 || ''item_tohit_percent_vs_monster''
|-
| style="font-size:90%;" | STAT313 || ''item_ac_vs_monster''
|-
| style="font-size:90%;" | STAT314 || ''item_ac_percent_vs_monster''
|-
| style="font-size:90%;" | STAT315 || ''firelength''
|-
| style="font-size:90%;" | STAT316 || ''burningmin''
|-
| style="font-size:90%;" | STAT317 || ''burningmax''
|-
| style="font-size:90%;" | STAT318 || ''progressive_damage''
|-
| style="font-size:90%;" | STAT319 || ''progressive_steal''
|-
| style="font-size:90%;" | STAT320 || ''progressive_other''
|-
| style="font-size:90%;" | STAT321 || ''progressive_fire''
|-
| style="font-size:90%;" | STAT322 || ''progressive_cold''
|-
| style="font-size:90%;" | STAT323 || ''progressive_lightning''
|-
| style="font-size:90%;" | STAT324 || ''item_extra_charges''
|-
| style="font-size:90%;" | STAT325 || ''progressive_tohit''
|-
| style="font-size:90%;" | STAT327 || ''damage_framerate''
|-
| style="font-size:90%;" | STAT328 || ''pierce_idx''
|-
| style="font-size:90%;" | STAT337 || ''passive_critical_strike''
|-
| style="font-size:90%;" | STAT338 || ''passive_dodge''
|-
| style="font-size:90%;" | STAT339 || ''passive_avoid''
|-
| style="font-size:90%;" | STAT340 || ''passive_evade''
|-
| style="font-size:90%;" | STAT341 || ''passive_warmth''
|-
| style="font-size:90%;" | STAT342 || ''passive_mastery_melee_th''
|-
| style="font-size:90%;" | STAT343 || ''passive_mastery_melee_dmg''
|-
| style="font-size:90%;" | STAT344 || ''passive_mastery_melee_crit''
|-
| style="font-size:90%;" | STAT345 || ''passive_mastery_throw_th''
|-
| style="font-size:90%;" | STAT346 || ''passive_mastery_throw_dmg''
|-
| style="font-size:90%;" | STAT347 || ''passive_mastery_throw_crit''
|-
| style="font-size:90%;" | STAT348 || ''passive_weaponblock''
|-
| style="font-size:90%;" | STAT349 || ''passive_summon_resist''
|-
| style="font-size:90%;" | STAT350 || ''modifierlist_skill''
|-
| style="font-size:90%;" | STAT351 || ''modifierlist_level''
|-
| style="font-size:90%;" | STAT352 || ''last_sent_hp_pct''
|-
| style="font-size:90%;" | STAT353 || ''source_unit_type''
|-
| style="font-size:90%;" | STAT354 || ''source_unit_id''
|-
| style="font-size:90%;" | STAT355 || ''shortparam1''
|-
| style="font-size:90%;" | STAT356 || ''questitemdifficulty''
|-
| style="font-size:90%;" | STAT358 || ''passive_mag_pierce''
|-
| style="font-size:90%;" | STAT361 || ''corruptor''
|-
| style="font-size:90%;" | STAT367 || ''skill_cold_enchant''
|-
| style="font-size:90%;" | STAT368 || You May Apply an Additional Curse
|-
| style="font-size:90%;" | STAT423 || style="font-size:76%;" | +N% to Leap and Leap Attack Movement Speed
|-
| style="font-size:90%;" | STAT443 || ''extra_bonespears''
|-
| style="font-size:90%;" | STAT444 || style="font-size:82%;" | You May Now Summon N Additional Revives
|-
| style="font-size:90%;" | STAT445 || ''immune_stat''
|-
| style="font-size:90%;" | STAT446 || ''mon_cooldown1''
|-
| style="font-size:90%;" | STAT447 || ''mon_cooldown2''
|-
| style="font-size:90%;" | STAT448 || ''mon_cooldown3''
|-
| style="font-size:90%;" | STAT459 || style="font-size:87%;" | You May Now Summon 1 Additional Spirit
Line 2,471 ⟶ 1,626:
|-
| style="font-size:90%;" | STAT468 || Blood Warp Costs N% Less Health
|-
| style="font-size:90%;" | STAT469 || ''pierce_count''
|-
| style="font-size:90%;" | STAT472 || ''dclone_clout''
|-
| style="font-size:90%;" | STAT473 || ''maxlevel_clout''
|-
| style="font-size:90%;" | STAT474 || ''dev_clout''
|-
| style="font-size:90%;" | STAT475 || ''extra_skele_archer''
Line 2,477 ⟶ 1,640:
|-
| style="font-size:90%;" | STAT478 || ''inc_splash_radius''
|-
| style="font-size:90%;" | STAT479 || ''item_numsockets_textonly''
|-
| style="font-size:90%;" | STAT480 || ''rathma_clout''
|-
| style="font-size:90%;" | STAT481 || ''extra_holybolts''
|-
| style="font-size:90%;" | STAT482 || ''pvp_cd''
|-
| style="font-size:90%;" | STAT483 || style="font-size:70%;" | Dragon Flight's Cooldown is Reduced by N Seconds
Line 2,491 ⟶ 1,662:
|-
| style="font-size:90%;" | STAT490 || ''eaglehorn_raven''
|-
| style="font-size:90%;" | STAT491 || ''pvp_disable''
|-
| style="font-size:90%;" | STAT492 || ''pvp_lld_cd''
|}
{| class="wikitable mw-collapsible mw-collapsed"
|+ style="white-space:nowrap; text-align:left;" | Unused
|-
! Code !! Item Appearance
|-
| STAT84 || ''unsentparam1''
|-
| STAT88 || ''item_doubleherbduration''
|-
| style="font-size:90%;" | STAT192 || ''unused192''
|-
| style="font-size:90%;" | STAT193 || ''unused193''
|-
| style="font-size:90%;" | STAT202 || ''unused202''
|-
| style="font-size:90%;" | STAT203 || ''unused203''
|-
| style="font-size:90%;" | STAT205 || ''unused204''
|-
| style="font-size:90%;" | STAT206 || ''unused205''
|-
| style="font-size:90%;" | STAT207 || ''unused206''
|-
| style="font-size:90%;" | STAT208 || ''unused207''
|-
| style="font-size:90%;" | STAT209 || ''unused208''
|-
| style="font-size:90%;" | STAT210 || ''unused209''
|-
| style="font-size:90%;" | STAT211 || ''unused210''
|-
| style="font-size:90%;" | STAT212 || ''unused211''
|-
| style="font-size:90%;" | STAT268 || ''item_armor_bytime''
|-
| style="font-size:90%;" | STAT269 || ''item_armorpercent_bytime''
|-
| style="font-size:90%;" | STAT270 || ''item_hp_bytime''
|-
| style="font-size:90%;" | STAT271 || ''item_mana_bytime''
|-
| style="font-size:90%;" | STAT272 || ''item_maxdamage_bytime''
|-
| style="font-size:90%;" | STAT273 || ''item_maxdamage_percent_bytime''
|-
| style="font-size:90%;" | STAT274 || ''item_strength_bytime''
|-
| style="font-size:90%;" | STAT275 || ''item_dexterity_bytime''
|-
| style="font-size:90%;" | STAT276 || ''item_energy_bytime''
|-
| style="font-size:90%;" | STAT277 || ''item_vitality_bytime''
|-
| style="font-size:90%;" | STAT278 || ''item_tohit_bytime''
|-
| style="font-size:90%;" | STAT279 || ''item_tohitpercent_bytime''
|-
| style="font-size:90%;" | STAT280 || ''item_cold_damagemax_bytime''
|-
| style="font-size:90%;" | STAT281 || ''item_fire_damagemax_bytime''
|-
| style="font-size:90%;" | STAT282 || ''item_ltng_damagemax_bytime''
|-
| style="font-size:90%;" | STAT283 || ''item_pois_damagemax_bytime''
|-
| style="font-size:90%;" | STAT284 || ''item_resist_cold_bytime''
|-
| style="font-size:90%;" | STAT285 || ''item_resist_fire_bytime''
|-
| style="font-size:90%;" | STAT286 || ''item_resist_ltng_bytime''
|-
| style="font-size:90%;" | STAT287 || ''item_resist_pois_bytime''
|-
| style="font-size:90%;" | STAT288 || ''item_absorb_cold_bytime''
|-
| style="font-size:90%;" | STAT289 || ''item_absorb_fire_bytime''
|-
| style="font-size:90%;" | STAT290 || ''item_absorb_ltng_bytime''
|-
| style="font-size:90%;" | STAT291 || ''item_absorb_pois_bytime''
|-
| style="font-size:90%;" | STAT292 || ''item_find_gold_bytime''
|-
| style="font-size:90%;" | STAT293 || ''item_find_magic_bytime''
|-
| style="font-size:90%;" | STAT294 || ''item_regenstamina_bytime''
|-
| style="font-size:90%;" | STAT295 || ''item_stamina_bytime''
|-
| style="font-size:90%;" | STAT296 || ''item_damage_demon_bytime''
|-
| style="font-size:90%;" | STAT297 || ''item_damage_undead_bytime''
|-
| style="font-size:90%;" | STAT298 || ''item_tohit_demon_bytime''
|-
| style="font-size:90%;" | STAT299 || ''item_tohit_undead_bytime''
|-
| style="font-size:90%;" | STAT300 || ''item_crushingblow_bytime''
|-
| style="font-size:90%;" | STAT301 || ''item_openwounds_bytime''
|-
| style="font-size:90%;" | STAT302 || ''item_kick_damage_bytime''
|-
| style="font-size:90%;" | STAT303 || ''item_deadlystrike_bytime''
|-
| style="font-size:90%;" | STAT304 || ''item_find_gems_bytime''
|}
 
===== Multi-layered Stats =====
Some stats have an additional layer that needs to be specified in order for the stat to filter properly. To access these layers, the '''MULTI''' condition can be used - if follows this format:
 
MULTI '''''Stat_ID''''' , '''''Layer_ID''''' = '''''Value'''''
 
Any of the comparison operators ('''<''','''>''','''=''') may be used - below is a list of stats with extra layers:
 
{| class="wikitable"
! Name !! Stat ID !! Layer ID !! Value !! Example
|-
| Class Skill || 83 || [[Item_Filtering#Group_Skills|class_id]] || skill_bonus || <code>MULTI83,2=2</code> ([[Hellfire Torch]] with Necromancer skills)
|-
| OSkill || 97 || [[Item_Filtering#Individual_Skills|skill_id]] || skill_bonus || <code>MULTI97,74=20</code> ([[Corpsemourn]])
|-
| Single Skill || 107 || [[Item_Filtering#Individual_Skills|skill_id]] || skill_bonus || <code>MULTI107,20=3</code> ([[Thunderstroke]])
|-
| Elemental Skill || 126 || elemental_id (<span class="d2-red">1</span>, <span class="d2-yellow">2</span>, <span class="d2-orange">3</span>, <span class="d2-blue">4</span>, <span class="d2-green">5</span>) || skill_bonus || <code>MULTI126,4>0</code> ([[Snowclash]])
|-
| Aura when Equipped || 151 || [[Item_Filtering#Individual_Skills|skill_id]] || aura_level || <code>MULTI151,98>5</code> ([[Templar's Might]])
|-
| Reanimate as: || 155 || monster_id || % chance || <code>MULTI155,492=6</code> ([[Demon Machine]])
|-
| Class Skill Tab || 188 || [[Item_Filtering#Group_Skills|skilltab_id]] || skill_bonus || <code>MULTI188,25>4</code> ([[Cloudcrack]])
|-
| Cast on Attack || 195 || (skill_id * 64) + skill_level || % chance || <code>MULTI195,3028=15</code> ([[Todesfaelle Flamme]])
|-
| Cast when you Kill an Enemy || 196 || (skill_id * 64) + skill_level || % chance || <code>MULTI196,28569=50</code> ([[Executioner's Justice]])
|-
| Cast when you Die || 197 || (skill_id * 64) + skill_level || % chance || <code>MULTI197,3615=100</code> ([[Rainbow_Facet_(Cold)|Rainbow Facet]])
|-
| Cast on Striking || 198 || (skill_id * 64) + skill_level || % chance || <code>MULTI198,792=8</code> ([[Demon Machine]])
|-
| Cast on Level-up || 199 || (skill_id * 64) + skill_level || % chance || <code>MULTI199,2973=100</code> ([[Rainbow_Facet_(Cold)|Rainbow Facet]])
|-
| Cast on Casting || 200 || (skill_id * 64) + skill_level || % chance || <code>MULTI200,7196=20</code> ([[Akarat's Devotion]])
|-
| Cast when Struck || 201 || (skill_id * 64) + skill_level || % chance || <code>MULTI201,2821=10</code> ([[Coldkill]])
|-
| Charge Skill || 204 || (skill_id * 64) + skill_level || current_charges + (max_charges * 256) || <code>MULTI204,5455=7453</code> ([[Bloodmoon]])
|-
| Melee Splash || 359 || (skill_id * 64) + skill_level || % chance || <code>MULTI359,22913=100</code>
|-
| Melee Splash (map mod) || 427 || (skill_id * 64) + skill_level || % chance || <code>MULTI427,22913=100</code>
|-
| Skill on Death (map mod) || 453 || (skill_id * 64) + skill_level || % chance ||
|}
 
There are also alternative ways to replicate what '''MULTI''' does for specific stats:
 
{| class="wikitable"
! Stat !! MULTI !! Alternative !! Example
|-
| Class Skill || MULTI83 || CLSK || <code>CLSK2=2</code> ([[Hellfire Torch]] with Necromancer skills)
|-
| OSkill || MULTI97 || OS || <code>OS74=20</code> ([[Corpsemourn]])
|-
| Single Skill || MULTI107 || SK || <code>SK20=3</code> ([[Thunderstroke]])
|-
| Class Skill Tab || MULTI188 || TABSK || <code>TABSK25>4</code> ([[Cloudcrack]])
|}
 
<!--T:127-->
==== Skill Codes ====
===== Group Skills =====
Line 2,570 ⟶ 1,912:
<ul></div>
 
<!--T:128-->
===== Individual Skills =====
In addition to these "SK" codes, there are equivalent "CHSK" codes for skill charges and "OS" codes for oskills. For example, '''CHSK54''' refers to skill charges for Teleport. "CHSK" codes for curse charges use separate 'proc' versions of those skills: '''CHSK445''' for Life Tap and '''CHSK447''' for Lower Resist.
 
<!--T:129-->
* Skills with gray names are not in the skill tree.
* Skills with gray codes do not appear on items as pointmods/staffmods under normal circumstances.
 
<!--T:130-->
<div><ul style="margin-left:0px;">
<li style="display:inline-table; margin-left:0px; margin-right:8px;">
Line 2,795 ⟶ 2,134:
<li style="display:inline-table; margin-left:0px; margin-right:8px;">
 
<!--T:131-->
====== Paladin ======
{| class="wikitable"
Line 2,841 ⟶ 2,179:
| SK115 || Vigor
|-
| SK116 || ConversionHoly Sword
|-
| SK117 || Holy Shield
Line 2,869 ⟶ 2,207:
</li>
<li style="display:inline-table; margin-left:0px; margin-right:8px;">
 
====== Barbarian ======
{| class="wikitable"
Line 2,933 ⟶ 2,272:
|-
| SK155 || Battle Command
|-
| SK368 || Deep Wounds
|}
</li>
Line 3,075 ⟶ 2,416:
<li style="display:inline-table; margin-left:0px; margin-right:8px;">
 
<!--T:132-->
====== Other ======
{| class="wikitable"
Line 3,088 ⟶ 2,428:
|-
| <span style="color:gray;">SK400</span> || <span style="color:gray;">Bone Nova</span>
|-
| <span style="color:gray;">SK442</span> || <span style="color:gray;">Amplify Damage (Proc)</span>
|-
| <span style="color:gray;">SK443</span> || <span style="color:gray;">Weaken (Proc)</span>
|-
| <span style="color:gray;">SK444</span> || <span style="color:gray;">Iron Maiden (Proc)</span>
|-
| <span style="color:gray;">SK445</span> || <span style="color:gray;">Life Tap (Proc)</span>
|-
| <span style="color:gray;">SK446</span> || <span style="color:gray;">Decrepify (Proc)</span>
|-
| <span style="color:gray;">SK447</span> || <span style="color:gray;">Lower Resist (Proc)</span>
|}
</li>
<ul></div>
 
<!--T:133-->
=== Value Condition IDs ===
Certain value conditions (MAPID, PREFIX, SUFFIX, AUTOMOD, STAT360) are slightly different than most others, referring to distinct zone/affix/corruption IDs instead of the value for attributes or other item stats with value ranges. Some other value conditions such as [[Item_Filtering#Info_Codes|GEMLEVEL, GEMTYPE, RUNE, or DIFF]] behave in a similar fashion, but their IDs aren't listed in this section due to having relatively few possible values.
 
<!--T:134-->
==== MAPID IDs ====
MAPID refers to the [[Zones|zone]] (or [[Maps|map]]) the character is currently in. When using a portal, thenearby zoneitems IDare [[Bugs|won'tupdated updatebefore immediatelythe zone ID]] so any items within a screen length of the portal will be displayed as if the character was still in the previous zone. If the character walks a couple screen lengths away and returns, the ID will be updated and those items will be displayed as expected.
 
<code>ItemDisplay[(MAPID=1 OR MAPID=40 OR MAPID=75 OR MAPID=103 OR MAPID=109)]: %NAME%{%NAME%}</code> <span style="color:gray;">''shows all items in town''</span>
<!--T:135-->
<code>ItemDisplay[(MAPID=1 OR MAPID=40 OR MAPID=75 OR MAPID=103 OR MAPID=109)]: %NAME%{%NAME%}</code> <span style="color:gray;">''shows all items from towns, including shopped items and any items in character inventories/stashes when the game began''</span>
 
<!--T:136-->
<code>ItemDisplay[yps CLVL>89 !(MAPID>160 MAPID<164)]:</code> <span style="color:gray;">''hides antidotes at level 90+ unless they're found in Rathma zones''</span>
 
<code>ItemDisplay[key !MAPID=39]:</code> <span style="color:gray;">''hides keys outside of the cow level''</span>
<!--T:137-->
<code>ItemDisplay[key !MAPID=39]:</code> <span style="color:gray;">''hides keys unless they were found within the cow level''</span>
 
<code>ItemDisplay[ear (MAPID=157 OR MAPID=159)]:</code> <span style="color:gray;">''hides player ears within the PvP duel arenas''</span>
<!--T:138-->
<code>ItemDisplay[ear (MAPID=157 OR MAPID=159)]:</code> <span style="color:gray;">''hides player ears found within the PvP duel arenas''</span>
 
<!--T:139-->
<div><ul style="margin-left:0px;">
<li style="display:inline-table; margin-left:0px; margin-right:8px;">
Line 3,491 ⟶ 2,836:
| 174 || Ruined Cistern
|-
| 175 || Ashen PlainPlains
|}
</li>
<ul></div>
 
<!--T:141-->
==== SUFFIX and PREFIX IDs ====
SUFFIX refers to the suffixes items have whereas PREFIX refers to the prefixes they have. They're similar to the [[Item_Filtering#Numbered_Attribute_Codes|numbered attribute codes]], but refer to affixes rather than affix attributes.
 
<!--T:142-->
Unlike other value conditions, IDs for SUFFIX and PREFIX are not all mutually exclusive with eachother. Rules can have multiple SUFFIX or PREFIX conditions and still match with valid items.
 
<!--T:143-->
<code>ItemDisplay[RARE SUFFIX=662 SUFFIX=158]:</code> <span style="color:gray;">''appends a red '''!''' to rare items that have a chance to cast Amplify Damage on hit and also have Ignore Target's Defense''</span>
 
<!--T:144-->
{| class="wikitable sortable mw-collapsible mw-collapsed"
|+ style="white-space:nowrap; text-align:left;" | SUFFIX IDs
|-
| 176 || Zhar's Sanctum
! ID !! Name !! rare !! level !! levelreq !! mod1code !! mod1min !! mod1max !! mod2code !! mod2min !! mod2max !! mod3code !! mod3min !! mod3max !! itype1 !! itype2 !! itype3 !! itype4 !! itype5 !! itype6 !! itype7 !! etype1 !! etype2 !! etype3
|-
| 177 || Hidden Waterways
| || || || || || || || || || || || || || || || || || || || || || || ||
|-
| 178 || Colonnades of Madness
| 115 || of Health || 1 || 7 || 5 || red-dmg || 1 || 1 || || || || || || || tors || shld || ring || amul || circ || misl || || || ||
|-
| 179 || Counselor's Causeway
| 116 || of Protection || 1 || 18 || 13 || red-dmg || 2 || 2 || || || || || || || ring || amul || circ || misl || || || || || ||
|-
| 180 || <span class="omod">''Unused''</span>
| 117 || of Absorption || 1 || 26 || 19 || red-dmg || 3 || 3 || || || || || || || amul || circ || misl || || || || || || ||
|-
| 181 || Stygian Caverns
| 118 || of Life || 1 || 35 || 26 || red-dmg || 4 || 4 || || || || || || || amul || circ || misl || || || || || || ||
|-
| 182 || Stronghold of Acheron
| 119 || of Life Everlasting || || 45 || 37 || red-dmg || 10 || 25 || || || || || || || amul || circ || || || || || || || ||
|-
| 183 || Fallen Gardens
| 120 || of Protection || 1 || 24 || 18 || red-dmg || 2 || 2 || || || || || || || tors || shld || circ || || || || || || ||
|-
| 184 || Diamond Gate
| 121 || of Absorption || 1 || 32 || 24 || red-dmg || 3 || 3 || || || || || || || tors || shld || circ || || || || || || ||
|-
| 122 || of Life || 1 || 41 || 33 || red-dmg || 4 || 7 || || || || || || || tors || shld || circ || || || || || || ||
|-
| 123 || of Anima || 1 || 51 || 43 || red-dmg || 8 || 15 || || || || || || || tors || shld || circ || || || || || || ||
|-
| 124 || of Warding || 1 || 7 || 5 || red-mag || 1 || 1 || || || || || || || tors || shld || ring || amul || orb || circ || misl || || ||
|-
| 125 || of the Sentinel || 1 || 18 || 12 || red-mag || 2 || 2 || || || || || || || ring || amul || orb || circ || misl || || || || ||
|-
| 126 || of Guarding || 1 || 26 || 19 || red-mag || 3 || 3 || || || || || || || amul || orb || circ || misl || || || || || ||
|-
| 127 || of Negation || 1 || 42 || 35 || red-mag || 4 || 6 || || || || || || || amul || orb || circ || misl || || || || || ||
|-
| 128 || of the Sentinel || 1 || 24 || 18 || red-mag || 2 || 2 || || || || || || || tors || shld || circ || || || || || || ||
|-
| 129 || of Guarding || 1 || 32 || 24 || red-mag || 3 || 3 || || || || || || || tors || shld || circ || || || || || || ||
|-
| 130 || of Negation || || 41 || 33 || red-mag || 4 || 6 || || || || || || || tors || shld || circ || || || || || || ||
|-
| || || || || || || || || || || || || || || || || || || || || || || ||
|-
| 158 || of Piercing || 1 || 25 || 18 || ignore-ac || 1 || 1 || || || || || || || rod || knif || h2h || || || || || || ||
|-
| || || || || || || || || || || || || || || || || || || || || || || ||
|-
| 161 || of Thorns || 1 || 14 || 10 || thorns || 1 || 3 || || || || || || || tors || shld || belt || circ || || || || || ||
|-
| 162 || of Spikes || 1 || 21 || 15 || thorns || 4 || 6 || || || || || || || tors || shld || belt || circ || || || || || ||
|-
| 163 || of Razors || 1 || 34 || 26 || thorns || 7 || 9 || || || || || || || tors || shld || circ || || || || || || ||
|-
| 164 || of Swords || 1 || 47 || 39 || thorns || 10 || 20 || || || || || || || tors || shld || circ || || || || || || ||
|-
| 165 || of Malice || 1 || 37 || 29 || thorns || 1 || 5 || || || || || || || jewl || || || || || || || || ||
|-
| 166 || of Readiness || 1 || 5 || 3 || swing1 || 10 || 10 || || || || || || || weap || misl || || || || || || wand || orb ||
|-
| 167 || of Alacrity || 1 || 25 || 17 || swing2 || 20 || 20 || || || || || || || weap || misl || || || || || || wand || orb ||
|-
| 168 || of Swiftness || 1 || 34 || 26 || swing2 || 30 || 30 || || || || || || || mele || miss || || || || || || wand || staf || orb
|-
| 169 || of Quickness || 1 || 46 || 38 || swing3 || 40 || 40 || || || || || || || mele || miss || || || || || || wand || staf || orb
|-
| 170 || of Alacrity || 1 || 43 || 35 || swing2 || 20 || 20 || || || || || || || glov || || || || || || || || ||
|-
| 171 || of Fervor || || 39 || 31 || swing1 || 15 || 15 || || || || || || || jewl || || || || || || || || ||
|-
| 172 || of Blocking || 1 || 1 || 1 || block || 10 || 10 || block2 || 15 || 15 || || || || shld || || || || || || || || ||
|-
| 173 || of Deflecting || 1 || 11 || 8 || block || 20 || 20 || block2 || 30 || 30 || || || || shld || || || || || || || || ||
|-
| 174 || of the Apprentice || 1 || 5 || 3 || cast1 || 10 || 10 || || || || || || || rod || ring || amul || orb || circ || || || || ||
|-
| 175 || of the Magus || 1 || 29 || 21 || cast3 || 20 || 20 || || || || || || || rod || orb || circ || || || || || || ||
|-
| 176 || of Frost || 1 || 4 || 3 || cold-min || 1 || 1 || cold-max || 1 || 2 || cold-len || 50 || 50 || weap || misl || || || || || || wand || orb ||
|-
| 177 || of the Icicle || 1 || 13 || 9 || cold-min || 1 || 1 || cold-max || 3 || 4 || cold-len || 75 || 75 || weap || misl || || || || || || wand || orb ||
|-
| 178 || of the Glacier || 1 || 27 || 20 || cold-min || 2 || 4 || cold-max || 4 || 15 || cold-len || 100 || 100 || weap || misl || || || || || || wand || orb ||
|-
| 179 || of Winter || 1 || 45 || 37 || cold-min || 5 || 9 || cold-max || 16 || 50 || cold-len || 150 || 150 || mele || misl || || || || || || wand || orb ||
|-
| 180 || of Frost || 1 || 55 || 41 || cold-min || 1 || 1 || cold-max || 3 || 6 || cold-len || 50 || 50 || belt || amul || || || || || || || ||
|-
| 181 || of Frigidity || 1 || 16 || 12 || cold-min || 1 || 1 || cold-max || 3 || 5 || cold-len || 50 || 50 || jewl || || || || || || || || ||
|-
| 182 || of Warmth || 1 || 10 || 7 || half-freeze || 1 || 1 || || || || || || || shld || boot || glov || ring || amul || circ || orb || || ||
|-
| 183 || of Flame || 1 || 4 || 3 || fire-min || 1 || 1 || fire-max || 2 || 5 || || || || weap || misl || || || || || || wand || orb ||
|-
| 184 || of Fire || 1 || 15 || 11 || fire-min || 1 || 4 || fire-max || 6 || 11 || || || || weap || misl || || || || || || wand || orb ||
|-
| 185 || of Burning || 1 || 25 || 18 || fire-min || 5 || 9 || fire-max || 10 || 20 || || || || weap || misl || || || || || || wand || orb ||
|-
| 186 || of Incineration || 1 || 43 || 35 || fire-min || 10 || 20 || fire-max || 21 || 75 || || || || mele || misl || || || || || || wand || orb ||
|-
| 187 || of Flame || 1 || 40 || 30 || fire-min || 1 || 1 || fire-max || 2 || 6 || || || || glov || ring || amul || || || || || || ||
|-
| 188 || of Passion || 1 || 15 || 11 || fire-min || 1 || 3 || fire-max || 6 || 10 || || || || jewl || || || || || || || || ||
|-
| 189 || of Shock || 1 || 4 || 3 || ltng-min || 1 || 1 || ltng-max || 6 || 8 || || || || weap || misl || || || || || || wand || orb ||
|-
| 190 || of Lightning || 1 || 15 || 11 || ltng-min || 1 || 1 || ltng-max || 9 || 16 || || || || weap || misl || || || || || || wand || orb ||
|-
| 191 || of Thunder || 1 || 25 || 18 || ltng-min || 1 || 1 || ltng-max || 17 || 40 || || || || weap || misl || || || || || || wand || orb ||
|-
| 192 || of Storms || 1 || 34 || 26 || ltng-min || 1 || 6 || ltng-max || 41 || 120 || || || || mele || misl || || || || || || wand || orb ||
|-
| 193 || of Shock || 1 || 50 || 37 || ltng-min || 1 || 1 || ltng-max || 11 || 23 || || || || boot || ring || amul || || || || || || ||
|-
| 194 || of Ennui || 1 || 15 || 11 || ltng-min || 1 || 1 || ltng-max || 10 || 20 || || || || jewl || || || || || || || || ||
|-
| 195 || of Craftsmanship || 1 || 1 || 1 || dmg-max || 1 || 1 || || || || || || || weap || ring || amul || || || || || wand || staf || orb
|-
| 196 || of Quality || 1 || 4 || 3 || dmg-max || 2 || 2 || || || || || || || weap || || || || || || || wand || staf || orb
|-
| 197 || of Maiming || 1 || 7 || 5 || dmg-max || 3 || 4 || || || || || || || weap || || || || || || || wand || staf || orb
|-
| 198 || of Slaying || 1 || 11 || 8 || dmg-max || 5 || 7 || || || || || || || weap || || || || || || || wand || staf || orb
|-
| 199 || of Gore || 1 || 14 || 10 || dmg-max || 8 || 10 || || || || || || || weap || || || || || || || wand || staf || orb
|-
| 200 || of Carnage || 1 || 19 || 14 || dmg-max || 11 || 14 || || || || || || || weap || || || || || || || wand || staf || orb
|-
| 201 || of Slaughter || 1 || 25 || 18 || dmg-max || 15 || 20 || || || || || || || weap || || || || || || || wand || staf || orb
|-
| 202 || of Butchery || 1 || 35 || 27 || dmg-max || 21 || 40 || || || || || || || weap || || || || || || || wand || staf || orb
|-
| 203 || of Evisceration || || 45 || 37 || dmg-max || 41 || 63 || || || || || || || weap || || || || || || || wand || staf || orb
|-
| 204 || of Maiming || 1 || 42 || 34 || dmg-max || 3 || 4 || || || || || || || shld || ring || amul || || || || || || ||
|-
| 205 || of Craftsmanship || 1 || 1-7 || 1 || dmg-max || 1 || 2 || || || || || || || circ || helm || || || || || || || ||
|-
| 206 || of Craftsmanship || 1 || 8-14 || 6 || dmg-max || 2 || 3 || || || || || || || circ || helm || || || || || || || ||
|-
| 207 || of Craftsmanship || 1 || 15 || 11 || dmg-max || 4 || 5 || || || || || || || circ || helm || || || || || || || ||
|-
| 208 || of Quality || 1 || 23-29 || 17 || dmg-max || 6 || 7 || || || || || || || circ || helm || || || || || || || ||
|-
| 209 || of Quality || 1 || 30 || 22 || dmg-max || 7 || 8 || || || || || || || circ || helm || || || || || || || ||
|-
| 210 || of Maiming || || 37-44 || 29 || dmg-max || 9 || 10 || || || || || || || circ || helm || || || || || || || ||
|-
| 211 || of Maiming || || 45 || 37 || dmg-max || 11 || 12 || || || || || || || circ || helm || || || || || || || ||
|-
| || || || || || || || || || || || || || || || || || || || || || || ||
|-
| 220 || of Ire || 1 || 4 || 3 || dmg-max || 2 || 5 || || || || || || || jewl || || || || || || || || ||
|-
| 221 || of Wrath || 1 || 11 || 8 || dmg-max || 6 || 9 || || || || || || || jewl || || || || || || || || ||
|-
| 222 || of Carnage || 1 || 25 || 18 || dmg-max || 11 || 15 || || || || || || || jewl || || || || || || || || ||
|-
| 223 || of Worth || 1 || 1 || 1 || dmg-min || 1 || 2 || || || || || || || weap || || || || || || || staf || wand || orb
|-
| 224 || of Measure || 1 || 12 || 9 || dmg-min || 3 || 4 || || || || || || || weap || || || || || || || staf || wand || orb
|-
| 225 || of Excellence || 1 || 24 || 18 || dmg-min || 5 || 8 || || || || || || || weap || || || || || || || staf || wand || orb
|-
| 226 || of Performance || 1 || 48 || 40 || dmg-min || 9 || 14 || || || || || || || weap || || || || || || || staf || wand || orb
|-
| 227 || of Transcendence || 1 || 76 || 68 || dmg-min || 15 || 20 || || || || || || || weap || || || || || || || staf || wand || orb
|-
| 228 || of Worth || 1 || 15 || 11 || dmg-min || 2 || 3 || || || || || || || ring || amul || circ || helm || || || || || ||
|-
| 229 || of Measure || 1 || 37 || 29 || dmg-min || 4 || 5 || || || || || || || ring || amul || circ || helm || || || || || ||
|-
| 230 || of Excellence || 1 || 59 || 51 || dmg-min || 6 || 9 || || || || || || || ring || amul || circ || helm || || || || || ||
|-
| 231 || of Performance || 1 || 81 || 63 || dmg-min || 10 || 13 || || || || || || || ring || amul || circ || helm || || || || || ||
|-
| 232 || of Joyfulness || 1 || 5 || 3 || dmg-min || 1 || 4 || || || || || || || jewl || || || || || || || || ||
|-
| 233 || of Bliss || 1 || 43 || 37 || dmg-min || 5 || 10 || || || || || || || jewl || || || || || || || || ||
|-
| 234 || of Blight || 1 || 5 || 3 || dmg-pois || 24 || 24 || || || || || || || weap || circ || misl || || || || || rod || orb ||
|-
| 235 || of Venom || 1 || 15 || 11 || dmg-pois || 54 || 54 || || || || || || || weap || circ || misl || || || || || rod || orb ||
|-
| 236 || of Pestilence || 1 || 25 || 18 || dmg-pois || 103 || 103 || || || || || || || weap || circ || misl || || || || || rod || orb ||
|-
| 237 || of Anthrax || 1 || 33 || 25 || dmg-pois || 171 || 171 || || || || || || || weap || misl || || || || || || rod || orb ||
|-
| 238 || of Blight || 1 || 45 || 33 || dmg-pois || 171 || 171 || || || || || || || ring || amul || || || || || || || ||
|-
| 239 || of Envy || 1 || 1 || 1 || dmg-pois || 103 || 103 || || || || || || || jewl || || || || || || || || ||
|-
| 240 || of Dexterity || 1 || 1 || 1 || dex || 1 || 2 || || || || || || || amul || miss || circ || || || || || || ||
|-
| 241 || of Skill || 1 || 11 || 8 || dex || 3 || 5 || || || || || || || amul || miss || circ || misl || || || || || ||
|-
| 242 || of Accuracy || 1 || 27 || 20 || dex || 6 || 9 || || || || || || || amul || miss || circ || misl || || || || || ||
|-
| 243 || of Precision || 1 || 43 || 35 || dex || 10 || 15 || || || || || || || amul || miss || circ || misl || || || || || ||
|-
| 244 || of Perfection || 1 || 59 || 51 || dex || 16 || 20 || || || || || || || amul || miss || circ || tors || shld || || || || ||
|-
| 245 || of Nirvana || 1 || 72 || 64 || dex || 21 || 30 || || || || || || || amul || miss || circ || || || || || || ||
|-
| 246 || of Dexterity || 1 || 6 || 4 || dex || 1 || 2 || || || || || || || ring || glov || || || || || || || ||
|-
| 247 || of Skill || 1 || 22 || 16 || dex || 3 || 5 || || || || || || || ring || glov || || || || || || || ||
|-
| 248 || of Accuracy || 1 || 39 || 31 || dex || 6 || 9 || || || || || || || ring || glov || || || || || || || ||
|-
| 249 || of Precision || 1 || 56 || 48 || dex || 10 || 15 || || || || || || || ring || glov || || || || || || || ||
|-
| 250 || of Perfection || || 75 || 67 || dex || 16 || 20 || || || || || || || ring || glov || || || || || || || ||
|-
| 251 || of Dexterity || 1 || 13 || 9 || dex || 2 || 3 || || || || || || || tors || boot || || || || || || glov || ||
|-
| 252 || of Skill || 1 || 34 || 26 || dex || 4 || 5 || || || || || || || tors || boot || || || || || || glov || ||
|-
| 253 || of Accuracy || 1 || 46 || 38 || dex || 6 || 9 || || || || || || || tors || boot || || || || || || glov || ||
|-
| 254 || of Precision || 1 || 60 || 52 || dex || 10 || 15 || || || || || || || tors || boot || shld || || || || || glov || ||
|-
| 255 || of Dexterity || 1 || 1 || 1 || dex || 3 || 4 || || || || || || || lcha || || || || || || || || ||
|-
| 256 || of Dexterity || 1 || 3 || 2 || dex || 2 || 3 || || || || || || || mcha || || || || || || || || ||
|-
| 257 || of Dexterity || 1 || 7 || 5 || dex || 1 || 1 || || || || || || || scha || || || || || || || || ||
|-
| 258 || of Dexterity || 1 || 14 || 10 || dex || 5 || 6 || || || || || || || lcha || || || || || || || || ||
|-
| 259 || of Dexterity || 1 || 18 || 13 || dex || 4 || 5 || || || || || || || mcha || || || || || || || || ||
|-
| 260 || of Dexterity || 1 || 22 || 16 || dex || 2 || 2 || || || || || || || scha || || || || || || || || ||
|-
| 261 || of Daring || 1 || 7 || 5 || dex || 1 || 3 || || || || || || || jewl || || || || || || || || ||
|-
| 262 || of Balance || 1 || 5 || 3 || balance1 || 10 || 10 || || || || || || || armo || || || || || || || glov || ||
|-
| 263 || of Equilibrium || 1 || 9 || 6 || balance2 || 17 || 17 || || || || || || || tors || belt || shld || || || || || || ||
|-
| 264 || of Stability || 1 || 18 || 13 || balance3 || 24 || 24 || || || || || || || tors || belt || || || || || || || ||
|-
| 265 || of Balance || 1 || 1 || 1 || balance3 || 12 || 12 || || || || || || || lcha || || || || || || || || ||
|-
| 266 || of Balance || 1 || 19 || 14 || balance2 || 8 || 8 || || || || || || || mcha || || || || || || || || ||
|-
| 267 || of Balance || 1 || 37 || 29 || balance1 || 5 || 5 || || || || || || || scha || || || || || || || || ||
|-
| 268 || of Truth || 1 || 44 || 36 || balance1 || 7 || 7 || || || || || || || jewl || || || || || || || || ||
|-
| 269 || of Regeneration || 1 || 10 || 7 || regen || 3 || 5 || || || || || || || scep || belt || ring || amul || circ || || || || ||
|-
| 270 || of Regeneration || 1 || 40 || 30 || regen || 3 || 5 || || || || || || || shld || glov || || || || || || || ||
|-
| 271 || of Regeneration || 1 || 70 || 52 || regen || 3 || 5 || || || || || || || tors || weap || boot || || || || || scep || ||
|-
| 272 || of Regrowth || 1 || 17 || 12 || regen || 6 || 10 || || || || || || || scep || amul || circ || || || || || || ||
|-
| 273 || of Regrowth || 1 || 55 || 41 || regen || 6 || 9 || || || || || || || belt || ring || || || || || || || ||
|-
| 274 || of Revivification || 1 || 38 || 30 || regen || 11 || 15 || || || || || || || scep || amul || circ || || || || || || ||
|-
| 275 || of Honor || 1 || 47 || 35 || regen || 1 || 4 || || || || || || || jewl || || || || || || || || ||
|-
| 276 || of Vileness || 1 || 9 || 6 || noheal || 1 || 1 || || || || || || || mele || misl || || || || || || rod || orb ||
|-
| 277 || of Greed || 1 || 1 || 1 || gold% || 25 || 40 || || || || || || || ring || amul || circ || misl || || || || || ||
|-
| 278 || of Wealth || 1 || 17 || 12 || gold% || 41 || 80 || || || || || || || boot || glov || belt || amul || circ || misl || || || ||
|-
| 279 || of Greed || 1 || 1 || 1 || gold% || 10 || 20 || || || || || || || lcha || || || || || || || || ||
|-
| 280 || of Greed || 1 || 7 || 5 || gold% || 21 || 30 || || || || || || || lcha || || || || || || || || ||
|-
| 281 || of Greed || 1 || 19 || 14 || gold% || 31 || 40 || || || || || || || lcha || || || || || || || || ||
|-
| 282 || of Greed || 1 || 1 || 5 || gold% || 5 || 10 || || || || || || || mcha || || || || || || || || ||
|-
| 283 || of Greed || 1 || 20 || 15 || gold% || 11 || 22 || || || || || || || mcha || || || || || || || || ||
|-
| 284 || of Greed || 1 || 1 || 15 || gold% || 5 || 10 || || || || || || || scha || || || || || || || || ||
|-
| 285 || of Avarice || 1 || 1 || 1 || gold% || 10 || 30 || || || || || || || jewl || || || || || || || || ||
|-
| 286 || of Chance || 1 || 12 || 9 || mag% || 5 || 15 || || || || || || || boot || glov || ring || amul || circ || helm || misl || || ||
|-
| 287 || of Fortune || 1 || 16 || 12 || mag% || 16 || 25 || || || || || || || boot || glov || amul || circ || helm || misl || || || ||
|-
| 288 || of Fortune || 1 || 42 || 31 || mag% || 16 || 25 || || || || || || || ring || || || || || || || || ||
|-
| 289 || of Luck || || 26 || 19 || mag% || 26 || 35 || || || || || || || boot || amul || circ || misl || || || || || ||
|-
| 290 || of Fortune || 1 || 31 || 18 || mag% || 3 || 5 || || || || || || || scha || || || || || || || || ||
|-
| 291 || of Good Luck || || 47 || 33 || mag% || 6 || 7 || || || || || || || scha || || || || || || || || ||
|-
| 292 || of Prosperity || 1 || 26 || 19 || mag% || 5 || 10 || || || || || || || jewl || || || || || || || || ||
|-
| 293 || of Energy || 1 || 1 || 1 || enr || 1 || 3 || || || || || || || amul || orb || circ || wand || staf || || || || ||
|-
| 294 || of the Mind || 1 || 7 || 3 || enr || 4 || 6 || || || || || || || amul || orb || circ || wand || staf || misl || || || ||
|-
| 295 || of Brilliance || 1 || 13 || 9 || enr || 7 || 10 || || || || || || || amul || orb || circ || wand || staf || misl || || || ||
|-
| 296 || of Sorcery || 1 || 21 || 16 || enr || 11 || 15 || || || || || || || amul || orb || circ || wand || staf || misl || || || ||
|-
| 297 || of Wizardry || 1 || 31 || 23 || enr || 16 || 20 || || || || || || || amul || orb || circ || wand || staf || || || || ||
|-
| 298 || of Enlightenment || 1 || 41 || 33 || enr || 21 || 30 || || || || || || || amul || orb || circ || wand || staf || || || || ||
|-
| 299 || of Energy || 1 || 7 || 5 || enr || 1 || 3 || || || || || || || ring || || || || || || || || ||
|-
| 300 || of the Mind || 1 || 13 || 9 || enr || 4 || 6 || || || || || || || ring || || || || || || || || ||
|-
| 301 || of Brilliance || 1 || 21 || 16 || enr || 7 || 10 || || || || || || || ring || || || || || || || || ||
|-
| 302 || of Sorcery || 1 || 31 || 23 || enr || 11 || 15 || || || || || || || ring || || || || || || || || ||
|-
| 303 || of Wizardry || || 41 || 33 || enr || 16 || 20 || || || || || || || ring || || || || || || || || ||
|-
| 304 || of Energy || 1 || 4 || 3 || enr || 1 || 3 || || || || || || || helm || scep || || || || || || || ||
|-
| 305 || of the Mind || 1 || 10 || 7 || enr || 4 || 6 || || || || || || || helm || scep || || || || || || || ||
|-
| 306 || of Brilliance || 1 || 16 || 12 || enr || 7 || 10 || || || || || || || helm || scep || || || || || || || ||
|-
| 307 || of Sorcery || || 26 || 21 || enr || 11 || 15 || || || || || || || helm || scep || || || || || || || ||
|-
| 308 || of Knowledge || 1 || 9 || 6 || enr || 1 || 5 || || || || || || || jewl || || || || || || || || ||
|-
| 309 || of the Bear || 1 || 8 || 6 || knock || 1 || 1 || || || || || || || mele || || || || || || || || ||
|-
| 310 || of Light || 1 || 6 || 4 || light || 1 || 1 || att || 15 || 30 || || || || armo || rod || ring || amul || misl || || || || ||
|-
| 311 || of Radiance || 1 || 15 || 11 || light || 3 || 3 || att || 30 || 60 || || || || rod || miss || ring || amul || helm || tors || misl || || ||
|-
| 312 || of the Sun || 1 || 17 || 12 || light || 5 || 5 || att% || 5 || 5 || || || || rod || miss || glov || ring || amul || helm || tors || misl || ||
|-
| 313 || of the Jackal || 1 || 1 || 1 || hp || 1 || 5 || || || || || || || tors || belt || amul || phlm || circ || || || || ||
|-
| 314 || of the Fox || 1 || 7 || 5 || hp || 6 || 10 || || || || || || || tors || belt || amul || phlm || circ || misl || || || ||
|-
| 315 || of the Wolf || 1 || 15 || 11 || hp || 11 || 20 || || || || || || || tors || belt || amul || phlm || circ || misl || || || ||
|-
| 316 || of the Tiger || 1 || 20 || 15 || hp || 21 || 30 || || || || || || || tors || belt || amul || phlm || circ || misl || || || ||
|-
| 317 || of the Mammoth || 1 || 25 || 18 || hp || 31 || 40 || || || || || || || tors || belt || amul || phlm || circ || misl || || || ||
|-
| 318 || of the Colosuss || 1 || 30 || 22 || hp || 41 || 60 || || || || || || || tors || belt || amul || phlm || circ || || || || ||
|-
| 319 || of the Squid || || 40 || 30 || hp || 61 || 80 || || || || || || || amul || || || || || || || || ||
|-
| 320 || of the Whale || || 50 || 37 || hp || 81 || 100 || || || || || || || amul || || || || || || || || ||
|-
| 321 || of the Jackal || 1 || 4 || 3 || hp || 1 || 5 || || || || || || || shld || pelt || || || || || || || ||
|-
| 322 || of the Fox || 1 || 11 || 8 || hp || 6 || 10 || || || || || || || shld || pelt || || || || || || || ||
|-
| 323 || of the Wolf || 1 || 27 || 20 || hp || 11 || 20 || || || || || || || shld || pelt || || || || || || || ||
|-
| 324 || of the Tiger || 1 || 43 || 35 || hp || 21 || 30 || || || || || || || shld || pelt || || || || || || || ||
|-
| 325 || of the Mammoth || 1 || 59 || 51 || hp || 31 || 40 || || || || || || || shld || pelt || || || || || || || ||
|-
| 326 || of the Colosuss || 1 || 75 || 67 || hp || 41 || 60 || || || || || || || shld || pelt || || || || || || || ||
|-
| 327 || of the Jackal || 1 || 8 || 6 || hp || 1 || 5 || || || || || || || club || hamm || mace || ring || helm || || || || ||
|-
| 328 || of the Fox || 1 || 17 || 13 || hp || 6 || 10 || || || || || || || club || hamm || mace || ring || helm || || || || ||
|-
| 329 || of the Wolf || 1 || 34 || 26 || hp || 11 || 20 || || || || || || || club || hamm || mace || ring || helm || || || || ||
|-
| 330 || of the Tiger || 1 || 51 || 43 || hp || 21 || 30 || || || || || || || club || hamm || mace || ring || helm || || || || ||
|-
| 331 || of the Mammoth || 1 || 68 || 60 || hp || 31 || 40 || || || || || || || club || hamm || mace || ring || helm || || || || ||
|-
| 332 || of Life || 1 || 1 || 1 || hp || 5 || 10 || || || || || || || lcha || || || || || || || || ||
|-
| 333 || of Life || 1 || 9 || 6 || hp || 11 || 15 || || || || || || || lcha || || || || || || || || ||
|-
| 334 || of Life || 1 || 19 || 14 || hp || 16 || 20 || || || || || || || lcha || || || || || || || || ||
|-
| 335 || of Substinence || 1 || 31 || 23 || hp || 21 || 25 || || || || || || || lcha || || || || || || || || ||
|-
| 336 || of Substinence || 1 || 45 || 37 || hp || 26 || 30 || || || || || || || lcha || || || || || || || || ||
|-
| 337 || of Substinence || 1 || 61 || 53 || hp || 31 || 35 || || || || || || || lcha || || || || || || || || ||
|-
| 338 || of Vita || || 77 || 69 || hp || 36 || 40 || || || || || || || lcha || || || || || || || || ||
|-
| 339 || of Vita || || 91 || 83 || hp || 41 || 45 || || || || || || || lcha || || || || || || || || ||
|-
| 340 || of Vita || || 110 || 97 || hp || 46 || 50 || || || || || || || lcha || || || || || || || || ||
|-
| 341 || of Life || 1 || 1 || 9 || hp || 6 || 10 || || || || || || || mcha || || || || || || || || ||
|-
| 342 || of Life || 1 || 12 || 9 || hp || 11 || 15 || || || || || || || mcha || || || || || || || || ||
|-
| 343 || of Substinence || 1 || 26 || 19 || hp || 16 || 20 || || || || || || || mcha || || || || || || || || ||
|-
| 344 || of Substinence || 1 || 42 || 34 || hp || 21 || 25 || || || || || || || mcha || || || || || || || || ||
|-
| 345 || of Vita || || 58 || 50 || hp || 26 || 30 || || || || || || || mcha || || || || || || || || ||
|-
| 346 || of Vita || || 74 || 66 || hp || 31 || 35 || || || || || || || mcha || || || || || || || || ||
|-
| 347 || of Life || 1 || 1 || 14 || hp || 5 || 10 || || || || || || || scha || || || || || || || || ||
|-
| 348 || of Substinence || 1 || 23 || 17 || hp || 11 || 15 || || || || || || || scha || || || || || || || || ||
|-
| 349 || of Vita || || 47 || 39 || hp || 16 || 20 || || || || || || || scha || || || || || || || || ||
|-
| 350 || of Spirit || 1 || 1 || 1 || hp || 3 || 8 || || || || || || || jewl || || || || || || || || ||
|-
| 351 || of Hope || || 45 || 37 || hp || 9 || 20 || || || || || || || jewl || || || || || || || || ||
|-
| 352 || of the Leech || 1 || 6 || 4 || lifesteal || 4 || 5 || || || || || || || weap || misl || || || || || || orb || ||
|-
| 353 || of the Locust || 1 || 20 || 15 || lifesteal || 6 || 7 || || || || || || || mele || misl || || || || || || orb || ||
|-
| 354 || of the Lamprey || 1 || 55 || 43 || lifesteal || 8 || 9 || || || || || || || mele || || || || || || || orb || ||
|-
| 355 || of the Leech || 1 || 14 || 10 || lifesteal || 3 || 4 || || || || || || || ring || circ || helm || || || || || || ||
|-
| 356 || of the Locust || 1 || 47 || 35 || lifesteal || 5 || 6 || || || || || || || ring || circ || || || || || || || ||
|-
| 357 || of the Lamprey || 1 || 77 || 65 || lifesteal || 7 || 8 || || || || || || || ring || circ || || || || || || || ||
|-
| 358 || of the Leech || 1 || 34 || 26 || lifesteal || 3 || 3 || || || || || || || glov || || || || || || || || ||
|-
| 359 || of the Bat || 1 || 7 || 4 || manasteal || 4 || 5 || || || || || || || weap || misl || || || || || || orb || ||
|-
| 360 || of the Wraith || 1 || 21 || 16 || manasteal || 6 || 7 || || || || || || || mele || misl || || || || || || || ||
|-
| 361 || of the Vampire || 1 || 56 || 48 || manasteal || 8 || 9 || || || || || || || mele || || || || || || || || ||
|-
| 362 || of the Bat || 1 || 15 || 11 || manasteal || 3 || 4 || || || || || || || amul || circ || helm || || || || || || ||
|-
| 363 || of the Wraith || 1 || 58 || 40 || manasteal || 5 || 6 || || || || || || || amul || circ || || || || || || || ||
|-
| 364 || of the Vampire || 1 || 78 || 66 || manasteal || 7 || 8 || || || || || || || amul || circ || || || || || || || ||
|-
| 365 || of the Bat || 1 || 35 || 27 || manasteal || 3 || 3 || || || || || || || glov || || || || || || || || ||
|-
| 366 || of Defiance || 1 || 25 || 18 || res-pois-len || 75 || 75 || || || || || || || tors || shld || amul || circ || misl || || || || ||
|-
| 367 || of Amelioration || 1 || 18 || 13 || res-pois-len || 50 || 50 || || || || || || || tors || shld || amul || circ || misl || || || || ||
|-
| 368 || of Remedy || 1 || 7 || 5 || res-pois-len || 25 || 25 || || || || || || || armo || ring || amul || circ || misl || || || || ||
|-
| 369 || of Simplicity || 1 || 25 || 18 || ease || -30 || -30 || || || || || || || tors || weap || shld || || || || || rod || orb ||
|-
| 370 || of Ease || 1 || 15 || 11 || ease || -20 || -20 || || || || || || || tors || weap || shld || || || || || rod || orb ||
|-
| 371 || of Freedom || 1 || 1 || 1 || ease || -15 || -15 || || || || || || || jewl || || || || || || || || ||
|-
| 372 || of Strength || 1 || 1 || 1 || str || 1 || 2 || || || || || || || amul || belt || club || hamm || circ || || || || ||
|-
| 373 || of Might || 1 || 10 || 8 || str || 3 || 5 || || || || || || || amul || belt || club || hamm || circ || misl || || || ||
|-
| 374 || of the Ox || 1 || 26 || 19 || str || 6 || 9 || || || || || || || amul || belt || club || hamm || circ || misl || || || ||
|-
| 375 || of the Giant || 1 || 42 || 34 || str || 10 || 15 || || || || || || || amul || belt || club || hamm || circ || misl || || || ||
|-
| 376 || of the Titan || 1 || 58 || 50 || str || 16 || 20 || || || || || || || amul || belt || club || hamm || circ || || || || ||
|-
| 377 || of Atlus || 1 || 71 || 63 || str || 21 || 30 || || || || || || || amul || belt || club || hamm || circ || || || || ||
|-
| 378 || of Strength || 1 || 5 || 3 || str || 1 || 2 || || || || || || || ring || scep || mace || tors || || || || || ||
|-
| 379 || of Might || 1 || 21 || 15 || str || 3 || 5 || || || || || || || ring || scep || mace || tors || || || || || ||
|-
| 380 || of the Ox || 1 || 38 || 30 || str || 6 || 9 || || || || || || || ring || scep || mace || tors || || || || || ||
|-
| 381 || of the Giant || 1 || 55 || 47 || str || 10 || 15 || || || || || || || ring || scep || mace || tors || shld || || || || ||
|-
| 382 || of the Titan || 1 || 74 || 66 || str || 16 || 20 || || || || || || || ring || scep || mace || tors || shld || || || || ||
|-
| 383 || of Strength || 1 || 12 || 8 || str || 1 || 2 || || || || || || || mele || glov || shld || || || || || blun || ||
|-
| 384 || of Might || 1 || 33 || 25 || str || 3 || 5 || || || || || || || mele || glov || shld || || || || || blun || ||
|-
| 385 || of the Ox || 1 || 45 || 37 || str || 6 || 9 || || || || || || || mele || glov || shld || || || || || blun || ||
|-
| 386 || of the Giant || 1 || 59 || 51 || str || 10 || 15 || || || || || || || mele || glov || || || || || || blun || ||
|-
| 387 || of Strength || 1 || 1 || 1 || str || 3 || 4 || || || || || || || lcha || || || || || || || || ||
|-
| 388 || of Strength || 1 || 3 || 2 || str || 2 || 3 || || || || || || || mcha || || || || || || || || ||
|-
| 389 || of Strength || 1 || 7 || 5 || str || 1 || 1 || || || || || || || scha || || || || || || || || ||
|-
| 390 || of Strength || 1 || 14 || 10 || str || 5 || 6 || || || || || || || lcha || || || || || || || || ||
|-
| 391 || of Strength || 1 || 18 || 13 || str || 4 || 5 || || || || || || || mcha || || || || || || || || ||
|-
| 392 || of Strength || 1 || 22 || 16 || str || 2 || 2 || || || || || || || scha || || || || || || || || ||
|-
| 393 || of Virility || 1 || 18 || 13 || str || 1 || 4 || || || || || || || jewl || || || || || || || || ||
|-
| 394 || of Pacing || 1 || 12 || 8 || move1 || 10 || 10 || || || || || || || boot || circ || || || || || || || ||
|-
| 395 || of Haste || 1 || 22 || 16 || move2 || 20 || 20 || || || || || || || boot || circ || || || || || || || ||
|-
| 396 || of Speed || 1 || 37 || 29 || move3 || 30 || 30 || || || || || || || boot || circ || || || || || || || ||
|-
| 397 || of Traveling || 1 || 65 || 57 || move3 || 30 || 30 || stamdrain || 80 || 90 || || || || boot || || || || || || || || ||
|-
| 398 || of Acceleration || || 51 || 43 || move3 || 40 || 40 || || || || || || || boot || || || || || || || || ||
|-
| 399 || of Inertia || 1 || 19 || 14 || move3 || 7 || 7 || || || || || || || lcha || || || || || || || || ||
|-
| 400 || of Inertia || 1 || 24 || 18 || move2 || 5 || 5 || || || || || || || mcha || || || || || || || || ||
|-
| 401 || of Inertia || || 35 || 27 || move1 || 3 || 3 || || || || || || || scha || || || || || || || || ||
|-
| 402 || of Self-Repair || 1 || 3 || 1 || rep-dur || || || || || || || || || weap || armo || || || || || || thro || miss ||
|-
| 403 || of Fast Repair || 1 || 20 || 12 || rep-dur || || || || || || || || || weap || armo || || || || || || thro || miss ||
|-
| 404 || of Ages || || 50 || 42 || indestruct || || || || || || || || || weap || armo || || || || || || thro || miss ||
|-
| || || || || || || || || || || || || || || || || || || || || || || ||
|-
| 407 || of the Kraken || || 20 || 1 || hp/lvl || || || || || || || || || amul || || || || || || || || ||
|-
| 408 || of Memory || 1 || 20 || 1 || mana/lvl || || || || || || || || || circ || amul || pelt || || || || || || ||
|-
| 409 || of the Elephant || 1 || 37 || 7 || hp/lvl || || || mana/lvl || || || || || || circ || pelt || || || || || || || ||
|-
| || || || || || || || || || || || || || || || || || || || || || || ||
|-
| 418 || of Firebolts || 1 || 16 || 12 || hit-skill || 10 || 8 || || || || || || || weap || || || || || || || miss || ||
|-
| 419 || of Firebolts || 1 || 6 || 4 || att-skill || 5 || 3 || || || || || || || weap || || || || || || || miss || ||
|-
| 420 || of Firebolts || 1 || 20 || 15 || att-skill || 10 || 4 || || || || || || || weap || || || || || || || miss || ||
|-
| 421 || of Charged Shield || 1 || 6 || 4 || gethit-skill || 10 || 3 || || || || || || || armo || ring || amul || || || || || || ||
|-
| 422 || of Charged Shield || 1 || 16 || 12 || gethit-skill || 12 || 4 || || || || || || || armo || ring || amul || || || || || || ||
|-
| 423 || of Charged Shield || 1 || 26 || 19 || gethit-skill || 14 || 5 || || || || || || || armo || ring || amul || || || || || || ||
|-
| 424 || of Icebolt || 1 || 6 || 4 || att-skill || 5 || 3 || || || || || || || weap || || || || || || || miss || ||
|-
| || || || || || || || || || || || || || || || || || || || || || || ||
|-
| 427 || of Telekinesis || 1 || || || || || || || || || || || || || || || || || || || || ||
|-
| 428 || of Frost Shield || 1 || 12 || 9 || gethit-skill || 5 || 3 || || || || || || || armo || amul || || || || || || || ||
|-
| || || || || || || || || || || || || || || || || || || || || || || ||
|-
| 432 || of Nova || 1 || 18 || 13 || hit-skill || 10 || 3 || || || || || || || weap || || || || || || || miss || ||
|-
| 433 || of Nova || 1 || 28 || 21 || hit-skill || 12 || 4 || || || || || || || weap || || || || || || || miss || ||
|-
| 434 || of Nova Shield || 1 || 18 || 13 || gethit-skill || 10 || 3 || || || || || || || armo || ring || || || || || || || ||
|-
| 435 || of Nova Shield || 1 || 28 || 21 || gethit-skill || 12 || 4 || || || || || || || armo || ring || || || || || || || ||
|-
| 436 || of Nova Shield || 1 || 38 || 28 || gethit-skill || 14 || 5 || || || || || || || armo || ring || || || || || || || ||
|-
| 437 || of Lightning || 1 || 18 || 13 || att-skill || 5 || 3 || || || || || || || weap || || || || || || || miss || ||
|-
| || || || || || || || || || || || || || || || || || || || || || || ||
|-
| 442 || of Chain Lightning || 1 || 25 || 18 || att-skill || 5 || 3 || || || || || || || weap || ring || amul || || || || || miss || ||
|-
| 443 || of Chain Lightning || 1 || 35 || 26 || att-skill || 8 || 3 || || || || || || || weap || ring || amul || || || || || miss || ||
|-
| 444 || of Chain Lightning || 1 || 45 || 33 || att-skill || 8 || 5 || || || || || || || weap || ring || amul || || || || || miss || ||
|-
| || || || || || || || || || || || || || || || || || || || || || || ||
|-
| 454 || of Hydra Shield || 1 || 40 || 30 || gethit-skill || 10 || 3 || || || || || || || amul || || || || || || || || ||
|-
| || || || || || || || || || || || || || || || || || || || || || || ||
|-
| 532 || of Teleportation || 1 || 24 || 24 || charged || -30 || -6 || || || || || || || staf || orb || || || || || || || ||
|-
| 533 || of Teleportation || 1 || 48 || 48 || charged || -20 || -3 || || || || || || || amul || circ || || || || || || || ||
|-
| || || || || || || || || || || || || || || || || || || || || || || ||
|-
| 578 || of Life Tap || 1 || 24 || 24 || charged || -60 || -6 || || || || || || || wand || knif || head || || || || || || ||
|-
| 579 || of Life Tap || 1 || 48 || 48 || charged || -20 || -3 || || || || || || || axe || || || || || || || || ||
|-
| || || || || || || || || || || || || || || || || || || || || || || ||
|-
| 594 || of Lower Resistance || 1 || 36 || 36 || charged || -60 || -3 || || || || || || || wand || knif || head || || || || || || ||
|-
| 595 || of Lower Resistance || 1 || 72 || 72 || charged || -20 || -1 || || || || || || || staf || || || || || || || || ||
|-
| || || || || || || || || || || || || || || || || || || || || || || ||
|-
| 662 || of Damage Amplification || 1 || 15 || 15 || hit-skill || 8 || 15 || || || || || || || weap || || || || || || || orb || ||
|-
| 663 || of the Icicle || 1 || 37 || 29 || cold-min || 2 || 3 || cold-max || 6 || 10 || cold-len || 50 || 50 || jewl || || || || || || || || ||
|-
| 664 || of the Glacier || || 58 || 50 || cold-min || 4 || 5 || cold-max || 11 || 15 || cold-len || 50 || 50 || jewl || || || || || || || || ||
|-
| 665 || of Fire || 1 || 36 || 28 || fire-min || 4 || 10 || fire-max || 11 || 30 || || || || jewl || || || || || || || || ||
|-
| 666 || of Burning || 1 || 57 || 49 || fire-min || 11 || 25 || fire-max || 31 || 50 || || || || jewl || || || || || || || || ||
|-
| 667 || of Lightning || 1 || 36 || 28 || ltng-min || 1 || 1 || ltng-max || 21 || 60 || || || || jewl || || || || || || || || ||
|-
| 668 || of Thunder || 1 || 57 || 49 || ltng-min || 1 || 1 || ltng-max || 61 || 100 || || || || jewl || || || || || || || || ||
|-
| 669 || of Daring || 1 || 19 || 14 || dex || 4 || 6 || || || || || || || jewl || || || || || || || || ||
|-
| 670 || of Daring || 1 || 36 || 28 || dex || 7 || 9 || || || || || || || jewl || || || || || || || || ||
|-
| 671 || of Knowledge || 1 || 24 || 18 || enr || 4 || 6 || || || || || || || jewl || || || || || || || || ||
|-
| 672 || of Knowledge || 1 || 41 || 33 || enr || 7 || 9 || || || || || || || jewl || || || || || || || || ||
|-
| 673 || of Virility || 1 || 33 || 25 || str || 5 || 6 || || || || || || || jewl || || || || || || || || ||
|-
| 674 || of Virility || 1 || 50 || 42 || str || 7 || 9 || || || || || || || jewl || || || || || || || || ||
|-
| 675 || of Readiness || 1 || 20 || 15 || swing1 || 10 || 10 || || || || || || || glov || || || || || || || || ||
|-
| 676 || of Craftsmanship || 1 || 1 || 1 || dmg-max || 1 || 1 || || || || || || || lcha || || || || || || || || ||
|-
| 677 || of Quality || 1 || 41 || 33 || dmg-max || 2 || 2 || || || || || || || lcha || || || || || || || || ||
|-
| 678 || of Maiming || || 71 || 63 || dmg-max || 3 || 4 || || || || || || || lcha || || || || || || || || ||
|-
| 679 || of Craftsmanship || 1 || 26 || 19 || dmg-max || 1 || 1 || || || || || || || mcha || || || || || || || || ||
|-
| 680 || of Quality || || 56 || 48 || dmg-max || 2 || 2 || || || || || || || mcha || || || || || || || || ||
|-
| 681 || of Craftsmanship || 1 || 85 || 77 || dmg-max || 1 || 1 || || || || || || || scha || || || || || || || || ||
|-
| 682 || of Blight || 1 || 1 || 1 || dmg-pois || 21 || 21 || || || || || || || lcha || || || || || || || || ||
|-
| 683 || of Venom || 1 || 6 || 4 || dmg-pois || 39 || 39 || || || || || || || lcha || || || || || || || || ||
|-
| 684 || of Pestilence || 1 || 14 || 10 || dmg-pois || 52 || 52 || || || || || || || lcha || || || || || || || || ||
|-
| 685 || of Anthrax || || 21 || 15 || dmg-pois || 86 || 86 || || || || || || || lcha || || || || || || || || ||
|-
| 686 || of Blight || 1 || 5 || 3 || dmg-pois || 21 || 21 || || || || || || || mcha || || || || || || || || ||
|-
| 687 || of Venom || 1 || 13 || 9 || dmg-pois || 39 || 39 || || || || || || || mcha || || || || || || || || ||
|-
| 688 || of Pestilence || 1 || 23 || 17 || dmg-pois || 52 || 52 || || || || || || || mcha || || || || || || || || ||
|-
| 689 || of Anthrax || || 33 || 25 || dmg-pois || 86 || 86 || || || || || || || mcha || || || || || || || || ||
|-
| 690 || of Blight || 1 || 9 || 6 || dmg-pois || 21 || 21 || || || || || || || scha || || || || || || || || ||
|-
| 691 || of Venom || 1 || 20 || 15 || dmg-pois || 39 || 39 || || || || || || || scha || || || || || || || || ||
|-
| 692 || of Pestilence || 1 || 32 || 24 || dmg-pois || 52 || 52 || || || || || || || scha || || || || || || || || ||
|-
| 693 || of Anthrax || || 44 || 36 || dmg-pois || 86 || 86 || || || || || || || scha || || || || || || || || ||
|-
| 694 || of Frost || 1 || 5 || 3 || cold-min || 1 || 1 || cold-max || 2 || 2 || cold-len || 25 || 25 || lcha || || || || || || || || ||
|-
| 695 || of the Icicle || 1 || 8 || 6 || cold-min || 2 || 2 || cold-max || 3 || 4 || cold-len || 25 || 25 || lcha || || || || || || || || ||
|-
| 696 || of the Glacier || 1 || 15 || 11 || cold-min || 3 || 3 || cold-max || 5 || 7 || cold-len || 25 || 25 || lcha || || || || || || || || ||
|-
| 697 || of Winter || || 23 || 17 || cold-min || 4 || 6 || cold-max || 8 || 11 || cold-len || 25 || 25 || lcha || || || || || || || || ||
|-
| 698 || of Frost || 1 || 9 || 6 || cold-min || 1 || 1 || cold-max || 2 || 3 || cold-len || 25 || 25 || mcha || || || || || || || || ||
|-
| 699 || of the Icicle || 1 || 15 || 11 || cold-min || 2 || 2 || cold-max || 4 || 5 || cold-len || 25 || 25 || mcha || || || || || || || || ||
|-
| 700 || of the Glacier || 1 || 25 || 18 || cold-min || 3 || 3 || cold-max || 6 || 8 || cold-len || 25 || 25 || mcha || || || || || || || || ||
|-
| 701 || of Winter || || 35 || 27 || cold-min || 4 || 6 || cold-max || 9 || 12 || cold-len || 25 || 25 || mcha || || || || || || || || ||
|-
| 702 || of Frost || 1 || 14 || 10 || cold-min || 1 || 1 || cold-max || 2 || 2 || cold-len || 25 || 25 || scha || || || || || || || || ||
|-
| 703 || of the Icicle || 1 || 21 || 15 || cold-min || 2 || 2 || cold-max || 3 || 4 || cold-len || 25 || 25 || scha || || || || || || || || ||
|-
| 704 || of the Glacier || 1 || 33 || 25 || cold-min || 3 || 3 || cold-max || 5 || 6 || cold-len || 25 || 25 || scha || || || || || || || || ||
|-
| 705 || of Winter || || 46 || 38 || cold-min || 4 || 5 || cold-max || 7 || 9 || cold-len || 25 || 25 || scha || || || || || || || || ||
|-
| 706 || of Flame || 1 || 3 || 2 || fire-min || 1 || 1 || fire-max || 2 || 2 || || || || lcha || || || || || || || || ||
|-
| 707 || of Fire || 1 || 8 || 6 || fire-min || 1 || 2 || fire-max || 3 || 3 || || || || lcha || || || || || || || || ||
|-
| 708 || of Burning || 1 || 14 || 10 || fire-min || 2 || 3 || fire-max || 4 || 7 || || || || lcha || || || || || || || || ||
|-
| 709 || of Incineration || || 22 || 16 || fire-min || 4 || 7 || fire-max || 8 || 14 || || || || lcha || || || || || || || || ||
|-
| 710 || of Flame || 1 || 7 || 5 || fire-min || 1 || 1 || fire-max || 2 || 2 || || || || mcha || || || || || || || || ||
|-
| 711 || of Fire || 1 || 14 || 10 || fire-min || 2 || 2 || fire-max || 3 || 5 || || || || mcha || || || || || || || || ||
|-
| 712 || of Burning || 1 || 24 || 18 || fire-min || 3 || 5 || fire-max || 6 || 11 || || || || mcha || || || || || || || || ||
|-
| 713 || of Incineration || || 34 || 26 || fire-min || 6 || 10 || fire-max || 12 || 17 || || || || mcha || || || || || || || || ||
|-
| 714 || of Flame || 1 || 11 || 8 || fire-min || 1 || 1 || fire-max || 2 || 2 || || || || scha || || || || || || || || ||
|-
| 715 || of Fire || 1 || 20 || 15 || fire-min || 2 || 2 || fire-max || 3 || 4 || || || || scha || || || || || || || || ||
|-
| 716 || of Burning || 1 || 32 || 24 || fire-min || 3 || 4 || fire-max || 5 || 8 || || || || scha || || || || || || || || ||
|-
| 717 || of Incineration || || 45 || 37 || fire-min || 5 || 7 || fire-max || 9 || 13 || || || || scha || || || || || || || || ||
|-
| 718 || of Shock || 1 || 4 || 3 || ltng-min || 1 || 1 || ltng-max || 2 || 3 || || || || lcha || || || || || || || || ||
|-
| 719 || of Lightning || 1 || 7 || 5 || ltng-min || 1 || 1 || ltng-max || 4 || 7 || || || || lcha || || || || || || || || ||
|-
| 720 || of Thunder || 1 || 15 || 11 || ltng-min || 1 || 1 || ltng-max || 8 || 21 || || || || lcha || || || || || || || || ||
|-
| 721 || of Storms || || 22 || 16 || ltng-min || 1 || 1 || ltng-max || 22 || 33 || || || || lcha || || || || || || || || ||
|-
| 722 || of Shock || 1 || 7 || 5 || ltng-min || 1 || 1 || ltng-max || 3 || 5 || || || || mcha || || || || || || || || ||
|-
| 723 || of Lightning || 1 || 14 || 10 || ltng-min || 1 || 1 || ltng-max || 6 || 13 || || || || mcha || || || || || || || || ||
|-
| 724 || of Thunder || 1 || 24 || 18 || ltng-min || 1 || 1 || ltng-max || 14 || 25 || || || || mcha || || || || || || || || ||
|-
| 725 || of Storms || || 34 || 26 || ltng-min || 1 || 1 || ltng-max || 26 || 38 || || || || mcha || || || || || || || || ||
|-
| 726 || of Shock || 1 || 12 || 9 || ltng-min || 1 || 1 || ltng-max || 3 || 6 || || || || scha || || || || || || || || ||
|-
| 727 || of Lightning || 1 || 21 || 15 || ltng-min || 1 || 1 || ltng-max || 7 || 10 || || || || scha || || || || || || || || ||
|-
| 728 || of Thunder || 1 || 33 || 25 || ltng-min || 1 || 1 || ltng-max || 11 || 18 || || || || scha || || || || || || || || ||
|-
| 729 || of Storms || || 45 || 37 || ltng-min || 1 || 1 || ltng-max || 19 || 28 || || || || scha || || || || || || || || ||
|-
| 730 || of Dexterity || 1 || 1-12 || 1 || dex || 1 || 1 || || || || || || || boot || glov || || || || || || || ||
|-
| 731 || of Dexterity || 1 || 1-5 || 1 || dex || 1 || 1 || || || || || || || ring || || || || || || || || ||
|-
| 732 || of Strength || 1 || 1-11 || 1 || str || 1 || 1 || || || || || || || glov || || || || || || || || ||
|-
| 733 || of Strength || 1 || 1-4 || 1 || str || 1 || 1 || || || || || || || ring || || || || || || || || ||
|-
| 734 || of Thorns || 1 || 1-13 || 1 || thorns || 1 || 1 || || || || || || || tors || belt || shld || || || || || || ||
|-
| 735 || of Frost || 1 || 1-3 || 1 || dmg-cold || 1 || 1 || || || || || || || weap || || || || || || || staf || wand || orb
|-
| 736 || of Flame || 1 || 1-3 || 1 || dmg-fire || 1 || 2 || || || || || || || weap || || || || || || || staf || wand || orb
|-
| 737 || of Blight || 1 || 1-4 || 1 || dmg-pois || 8 || 8 || || || || || || || weap || || || || || || || scep || staf || orb
|-
| 738 || of Shock || 1 || 1-3 || 1 || dmg-ltng || 1 || 3 || || || || || || || weap || || || || || || || staf || wand || orb
|-
| 739 || of Regeneration || 1 || 1-9 || 1 || regen || 2 || 2 || || || || || || || amul || circ || || || || || || || ||
|-
| 740 || of Energy || 1 || 1-4 || 1 || enr || 1 || 1 || || || || || || || amul || orb || circ || wand || staf || helm || ring || || ||
|-
| 741 || of Light || 1 || 1-5 || 1 || light || 1 || 1 || att || 10 || 10 || || || || ring || amul || || || || || || || ||
|-
| 742 || of the Leech || 1 || 24 || 20 || lifesteal || 2 || 3 || || || || || || || amul || || || || || || || || ||
|-
| 743 || of the Locust || 1 || 57 || 45 || lifesteal || 4 || 5 || || || || || || || amul || || || || || || || || ||
|-
| 744 || of the Lamprey || 1 || 75 || 63 || lifesteal || 6 || 6 || || || || || || || amul || || || || || || || || ||
|-
| 745 || of the Bat || 1 || 25 || 21 || manasteal || 2 || 3 || || || || || || || ring || || || || || || || || ||
|-
| 746 || of the Wraith || 1 || 58 || 46 || manasteal || 4 || 5 || || || || || || || ring || || || || || || || || ||
|-
| 747 || of the Vampire || 1 || 76 || 64 || manasteal || 6 || 6 || || || || || || || ring || || || || || || || || ||
|-
| || || || || || || || || || || || || || || || || || || || || || || ||
|-
| 749 || of Sturdiness || 1 || 1 || 1 || map-mon-ac% || 50 || 100 || map-play-addxp || 3 || 4 || map-play-mag-gold% || 10 || 15 || t1m || t2m || t3m || t4m || || || || || ||
|-
| 750 || of Stability || 1 || 1 || 1 || map-mon-ac% || 100 || 150 || map-play-addxp || 4 || 5 || map-play-mag-gold% || 20 || 25 || t2m || t3m || t4m || || || || || || ||
|-
| 751 || of Vigor || 1 || 1 || 1 || map-mon-ac% || 150 || 200 || map-play-addxp || 5 || 6 || map-play-mag-gold% || 30 || 35 || t3m || t4m || || || || || || || ||
|-
| 752 || of Crimson || 1 || 1 || 1 || map-mon-abs-fire% || 4 || 6 || map-glob-density || 25 || 35 || map-play-addxp || 3 || 4 || t1m || t2m || t3m || t4m || || || || || ||
|-
| 753 || of Crimson || 1 || 1 || 1 || map-mon-abs-fire% || 6 || 8 || map-glob-density || 35 || 45 || map-play-addxp || 4 || 5 || t2m || t3m || t4m || || || || || || ||
|-
| 754 || of Crimson || 1 || 1 || 1 || map-mon-abs-fire% || 8 || 10 || map-glob-density || 45 || 50 || map-play-addxp || 5 || 6 || t3m || t4m || || || || || || || ||
|-
| 755 || of Tangerine || 1 || 1 || 1 || map-mon-abs-ltng% || 4 || 6 || map-glob-density || 25 || 35 || map-play-addxp || 3 || 4 || t1m || t2m || t3m || t4m || || || || || ||
|-
| 756 || of Tangerine || 1 || 1 || 1 || map-mon-abs-ltng% || 6 || 8 || map-glob-density || 35 || 45 || map-play-addxp || 4 || 5 || t2m || t3m || t4m || || || || || || ||
|-
| 757 || of Tangerine || 1 || 1 || 1 || map-mon-abs-ltng% || 8 || 10 || map-glob-density || 40 || 50 || map-play-addxp || 5 || 6 || t3m || t4m || || || || || || || ||
|-
| 758 || of Opal || 1 || 1 || 1 || map-mon-abs-mag% || 4 || 6 || map-glob-density || 25 || 35 || map-play-addxp || 3 || 4 || t1m || t2m || t3m || t4m || || || || || ||
|-
| 759 || of Opal || 1 || 1 || 1 || map-mon-abs-mag% || 6 || 8 || map-glob-density || 35 || 45 || map-play-addxp || 4 || 5 || t2m || t3m || t4m || || || || || || ||
|-
| 760 || of Opal || 1 || 1 || 1 || map-mon-abs-mag% || 8 || 10 || map-glob-density || 40 || 50 || map-play-addxp || 5 || 6 || t3m || t4m || || || || || || || ||
|-
| 761 || of Azure || 1 || 1 || 1 || map-mon-abs-cold% || 4 || 6 || map-glob-density || 25 || 35 || map-play-addxp || 3 || 4 || t1m || t2m || t3m || t4m || || || || || ||
|-
| 762 || of Azure || 1 || 1 || 1 || map-mon-abs-cold% || 6 || 8 || map-glob-density || 35 || 45 || map-play-addxp || 4 || 5 || t2m || t3m || t4m || || || || || || ||
|-
| 763 || of Azure || 1 || 1 || 1 || map-mon-abs-cold% || 8 || 10 || map-glob-density || 35 || 50 || map-play-addxp || 5 || 6 || t3m || t4m || || || || || || || ||
|-
| 764 || of Protection || 1 || 1 || 1 || map-mon-red-dmg || 100 || 200 || map-glob-density || 25 || 30 || map-play-mag-gold% || 15 || 20 || t1m || t2m || t3m || t4m || || || || || ||
|-
| 765 || of Security || 1 || 1 || 1 || map-mon-red-dmg || 300 || 400 || map-glob-density || 30 || 35 || map-play-mag-gold% || 25 || 30 || t2m || t3m || t4m || || || || || || ||
|-
| 766 || of Safety || 1 || 1 || 1 || map-mon-red-dmg || 500 || 600 || map-glob-density || 35 || 45 || map-play-mag-gold% || 35 || 40 || t3m || t4m || || || || || || || ||
|-
| 767 || of Swiftness || 1 || 1 || 1 || map-mon-velocity% || 20 || 30 || map-glob-density || 30 || 40 || map-play-addxp || 3 || 4 || t1m || t2m || t3m || t4m || || || || || ||
|-
| 768 || of Quickness || 1 || 1 || 1 || map-mon-velocity% || 30 || 40 || map-glob-density || 40 || 50 || map-play-addxp || 4 || 5 || t2m || t3m || t4m || || || || || || ||
|-
| 769 || of Velocity || 1 || 1 || 1 || map-mon-velocity% || 40 || 50 || map-glob-density || 50 || 60 || map-play-addxp || 5 || 6 || t3m || t4m || || || || || || || ||
|-
| 770 || of Regeneration || 1 || 1 || 1 || map-mon-regen || 1024 || 1560 || map-play-addxp || 3 || 4 || map-play-mag-gold% || 20 || 25 || t1m || t2m || t3m || t4m || || || || || ||
|-
| 771 || of Renewal || 1 || 1 || 1 || map-mon-regen || 1560 || 2048 || map-play-addxp || 4 || 5 || map-play-mag-gold% || 30 || 35 || t2m || t3m || t4m || || || || || || ||
|-
| 772 || of Rebirth || 1 || 1 || 1 || map-mon-regen || 2048 || 2560 || map-play-addxp || 5 || 6 || map-play-mag-gold% || 40 || 45 || t3m || t4m || || || || || || || ||
|-
| 773 || of the Leech || 1 || 1 || 1 || map-mon-lifesteal-hp% || 10 || 15 || map-glob-density || 25 || 30 || map-play-addxp || 5 || 6 || t1m || t2m || t3m || t4m || || || || || ||
|-
| 774 || of the Parasite || 1 || 1 || 1 || map-mon-lifesteal-hp% || 15 || 20 || map-glob-density || 30 || 40 || map-play-addxp || 6 || 7 || t2m || t3m || t4m || || || || || || ||
|-
| 775 || of the Bloodsucker || 1 || 1 || 1 || map-mon-lifesteal-hp% || 20 || 25 || map-glob-density || 35 || 40 || map-play-addxp || 7 || 8 || t3m || t4m || || || || || || || ||
|-
| 776 || of Resilience || 1 || 1 || 1 || map-mon-balance1 || 40 || 60 || map-glob-density || 30 || 40 || map-play-mag-gold% || 10 || 15 || t1m || t2m || t3m || t4m || || || || || ||
|-
| 777 || of Hardiness || 1 || 1 || 1 || map-mon-balance1 || 60 || 80 || map-glob-density || 40 || 50 || map-play-mag-gold% || 20 || 25 || t2m || t3m || t4m || || || || || || ||
|-
| 778 || of Fortitude || 1 || 1 || 1 || map-mon-balance1 || 80 || 100 || map-glob-density || 50 || 60 || map-play-mag-gold% || 30 || 35 || t3m || t4m || || || || || || || ||
|-
| 779 || of Health || 1 || 1 || 1 || map-mon-hp% || 10 || 20 || map-glob-density || 30 || 40 || map-play-addxp || 5 || 6 || t1m || t2m || t3m || t4m || || || || || ||
|-
| 780 || of Vitality || 1 || 1 || 1 || map-mon-hp% || 20 || 30 || map-glob-density || 40 || 50 || map-play-addxp || 6 || 7 || t2m || t3m || t4m || || || || || || ||
|-
| 781 || of Vim || 1 || 1 || 1 || map-mon-hp% || 30 || 40 || map-glob-density || 50 || 60 || map-play-addxp || 7 || 8 || t3m || t4m || || || || || || || ||
|-
| 782 || of Imbalance || 1 || 1 || 1 || map-play-balance1 || -20 || -10 || map-glob-density || 30 || 40 || map-play-addxp || 3 || 4 || t1m || t2m || t3m || t4m || || || || || ||
|-
| 783 || of Inequality || 1 || 1 || 1 || map-play-balance1 || -30 || -20 || map-glob-density || 40 || 50 || map-play-addxp || 4 || 5 || t2m || t3m || t4m || || || || || || ||
|-
| 784 || of Uneveness || 1 || 1 || 1 || map-play-balance1 || -40 || -30 || map-glob-density || 50 || 60 || map-play-addxp || 5 || 6 || t3m || t4m || || || || || || || ||
|-
| 785 || of Warding || 1 || 1 || 1 || map-mon-curseresist-hp% || 10 || 15 || map-play-addxp || 5 || 6 || map-play-mag-gold% || 20 || 25 || t1m || t2m || t3m || t4m || || || || || ||
|-
| 786 || of Guarding || 1 || 1 || 1 || map-mon-curseresist-hp% || 15 || 20 || map-play-addxp || 6 || 7 || map-play-mag-gold% || 30 || 35 || t2m || t3m || t4m || || || || || || ||
|-
| 787 || of Preservation || 1 || 1 || 1 || map-mon-curseresist-hp% || 20 || 25 || map-play-addxp || 7 || 8 || map-play-mag-gold% || 40 || 45 || t3m || t4m || || || || || || || ||
|-
| 788 || of Hindrance || 1 || 1 || 1 || map-play-res-all || -15 || -10 || map-play-addxp || 4 || 5 || map-play-mag-gold% || 15 || 20 || t1m || t2m || t3m || t4m || || || || || ||
|-
| 789 || of Aversion || 1 || 1 || 1 || map-play-res-all || -20 || -15 || map-play-addxp || 5 || 6 || map-play-mag-gold% || 25 || 30 || t2m || t3m || t4m || || || || || || ||
|-
| 790 || of Permeability || 1 || 1 || 1 || map-play-res-all || -25 || -20 || map-play-addxp || 6 || 7 || map-play-mag-gold% || 40 || 45 || t3m || t4m || || || || || || || ||
|-
| 791 || of Cracking || 1 || 1 || 1 || map-play-ac% || -30 || -20 || map-glob-density || 25 || 35 || map-play-mag-gold% || 15 || 20 || t1m || t2m || t3m || t4m || || || || || ||
|-
| 792 || of Crumbling || 1 || 1 || 1 || map-play-ac% || -40 || -30 || map-glob-density || 30 || 35 || map-play-mag-gold% || 25 || 30 || t2m || t3m || t4m || || || || || || ||
|-
| 793 || of Disintegration || 1 || 1 || 1 || map-play-ac% || -50 || -40 || map-glob-density || 35 || 40 || map-play-mag-gold% || 35 || 40 || t3m || t4m || || || || || || || ||
|-
| 794 || of Fumbling || 1 || 1 || 1 || map-play-block || -20 || -10 || map-glob-density || 25 || 35 || map-play-mag-gold% || 15 || 20 || t1m || t2m || t3m || t4m || || || || || ||
|-
| 795 || of Bumbling || 1 || 1 || 1 || map-play-block || -30 || -20 || map-glob-density || 35 || 45 || map-play-mag-gold% || 25 || 30 || t2m || t3m || t4m || || || || || || ||
|-
| 796 || of Blundering || 1 || 1 || 1 || map-play-block || -40 || -30 || map-glob-density || 45 || 50 || map-play-mag-gold% || 35 || 40 || t3m || t4m || || || || || || || ||
|-
| 797 || of Defending || 1 || 45 || 20 || red-dmg% || 5 || 10 || || || || || || || tors || shld || || || || || || || ||
|-
| 798 || of Defending || 1 || 65 || 40 || red-dmg% || 5 || 10 || || || || || || || belt || || || || || || || || ||
|-
| 799 || of Protecting || 1 || 65 || 40 || red-dmg% || 10 || 15 || || || || || || || tors || shld || || || || || || || ||
|-
| 800 || of Guardianship || 1 || 85 || 60 || red-dmg% || 15 || 20 || || || || || || || tors || shld || || || || || || || ||
|-
| 801 || of Savagery || 1 || 18 || 15 || deadly || 5 || 10 || || || || || || || weap || misl || || || || || || staf || wand || orb
|-
| 802 || of Devastation || 1 || 28 || 25 || deadly || 10 || 15 || || || || || || || weap || misl || || || || || || staf || wand || orb
|-
| 803 || of Havoc || 1 || 38 || 35 || deadly || 15 || 20 || || || || || || || weap || misl || || || || || || staf || wand || orb
|-
| 804 || of Destruction || 1 || 48 || 45 || deadly || 20 || 25 || || || || || || || weap || misl || || || || || || staf || wand || orb
|-
| 805 || of Desolation || 1 || 58 || 55 || deadly || 25 || 30 || || || || || || || weap || misl || || || || || || staf || wand || orb
|-
| 806 || of Bleeding || 1 || 18 || 15 || openwounds || 5 || 10 || || || || || || || weap || misl || || || || || || staf || wand || orb
|-
| 807 || of Siphoning || 1 || 28 || 25 || openwounds || 10 || 15 || || || || || || || weap || misl || || || || || || staf || wand || orb
|-
| 808 || of Gory || 1 || 38 || 35 || openwounds || 15 || 20 || || || || || || || weap || misl || || || || || || staf || wand || orb
|-
| 809 || of Sanguinary || 1 || 48 || 45 || openwounds || 20 || 25 || || || || || || || weap || misl || || || || || || staf || wand || orb
|-
| 810 || of Hematic || 1 || 58 || 55 || openwounds || 25 || 30 || || || || || || || weap || misl || || || || || || staf || wand || orb
|-
| 811 || of Chipping || 1 || 18 || 15 || crush || 5 || 10 || || || || || || || weap || misl || || || || || || staf || wand || orb
|-
| 812 || of Crumbling || 1 || 28 || 25 || crush || 10 || 15 || || || || || || || weap || misl || || || || || || staf || wand || orb
|-
| 813 || of Breaking || 1 || 38 || 35 || crush || 15 || 20 || || || || || || || weap || misl || || || || || || staf || wand || orb
|-
| 814 || of Crushing || 1 || 48 || 45 || crush || 20 || 25 || || || || || || || weap || misl || || || || || || staf || wand || orb
|-
| 815 || of Pulverizing || 1 || 58 || 55 || crush || 25 || 30 || || || || || || || weap || misl || || || || || || staf || wand || orb
|-
| 816 || of the Apprentice || 1 || 17 || 20 || cast1 || 10 || 10 || || || || || || || tors || shld || ashd || || || || || || ||
|-
| 817 || of the Apprentice || 1 || 25 || 29 || cast1 || 10 || 10 || || || || || || || glov || belt || || || || || || || ||
|-
| 818 || of the Magus || 1 || 25 || 29 || cast3 || 20 || 20 || || || || || || || tors || shld || ashd || || || || || || ||
|-
| 819 || of the Squid || 1 || 40 || 30 || hp || 61 || 80 || || || || || || || tors || belt || phlm || circ || shld || || || || ||
|-
| 820 || of the Whale || 1 || 50 || 37 || hp || 81 || 100 || || || || || || || tors || belt || phlm || circ || shld || || || || ||
|-
| 821 || of the Kraken || 1 || 20 || 1 || hp/lvl || || || || || || || || || tors || pelt || phlm || shld || || || || || ||
|-
| 822 || of Clarity || 1 || 25 || 21 || light || 4 || 4 || att || 60 || 120 || || || || rod || miss || amul || helm || tors || ring || || || ||
|-
| 823 || of Divinity || 1 || 50 || 42 || light || 5 || 5 || att || 120 || 240 || || || || rod || miss || amul || tors || || || || || ||
|-
| 824 || of the Dawn || 1 || 27 || 22 || light || 5 || 5 || att% || 10 || 10 || || || || rod || miss || glov || ring || amul || helm || tors || || ||
|-
| 825 || of Pacing || 1 || 12 || 8 || move1 || 10 || 10 || || || || || || || amaz || misl || || || || || || || ||
|-
| 826 || of Haste || 1 || 22 || 16 || move2 || 20 || 20 || || || || || || || amaz || misl || || || || || || || ||
|-
| 827 || of Evisceration || 1 || 45 || 37 || dmg-max || 41 || 63 || || || || || || || miss || || || || || || || || ||
|-
| 828 || of Carnage || 1 || 71 || 58 || dmg-max || 11 || 14 || || || || || || || ring || amul || circ || helm || || || || || ||
|-
| || || || || || || || || || || || || || || || || || || || || || || ||
|-
| 834 || of the Bear || 1 || 30 || 24 || knock || 1 || 1 || || || || || || || misl || || || || || || || || ||
|-
| 835 || of the Lamprey || || 55 || 43 || lifesteal || 6 || 9 || || || || || || || misl || || || || || || || orb || ||
|-
| 836 || of the Vampire || || 56 || 48 || manasteal || 6 || 9 || || || || || || || misl || || || || || || || || ||
|-
| 837 || of the Jeweler || || 1 || 1 || map-mon-dropjewelry || 1 || 1 || || || || || || || t1m || t2m || t3m || || || || || || ||
|-
| 838 || of the Jeweler || || 1 || 1 || map-mon-dropjewelry || 2 || 2 || || || || || || || t2m || t3m || || || || || || || ||
|-
| 839 || of the Jeweler || || 1 || 1 || map-mon-dropjewelry || 3 || 3 || || || || || || || t3m || || || || || || || || ||
|-
| 840 || of the Smith || 1 || 1 || 1 || map-mon-dropweapons || 1 || 1 || || || || || || || t1m || t2m || t3m || || || || || || ||
|-
| 841 || of the Smith || 1 || 1 || 1 || map-mon-dropweapons || 2 || 2 || || || || || || || t2m || t3m || || || || || || || ||
|-
| 842 || of the Smith || 1 || 1 || 1 || map-mon-dropweapons || 3 || 3 || || || || || || || t3m || || || || || || || || ||
|-
| 843 || of the Armorer || 1 || 1 || 1 || map-mon-droparmor || 1 || 1 || || || || || || || t1m || t2m || t3m || || || || || || ||
|-
| 844 || of the Armorer || 1 || 1 || 1 || map-mon-droparmor || 2 || 2 || || || || || || || t2m || t3m || || || || || || || ||
|-
| 845 || 834 || of the Armorer || 1 || 1 || 1 || map-mon-droparmor || 3 || 3 || || || || || || || t3m || || || || || || || || ||
|-
| 846 || of the Crafter || 1 || 1 || 1 || map-mon-dropcharms || 1 || 1 || || || || || || || t1m || t2m || t3m || || || || || || ||
|-
| 847 || of the Crafter || 1 || 1 || 1 || map-mon-dropcharms || 2 || 2 || || || || || || || t2m || t3m || || || || || || || ||
|-
| 848 || of the Crafter || 1 || 1 || 1 || map-mon-dropcharms || 3 || 3 || || || || || || || t3m || || || || || || || || ||
|-
| 849 || of the Adventurer || 1 || 1 || 1 || map-glob-arealevel || 1 || 1 || || || || || || || t1m || t2m || t3m || t4m || || || || || ||
|}
</li>
<ul></div>
 
==== SUFFIX, PREFIX, and AUTOMOD IDs ====
SUFFIX refers to the suffixes items have whereas PREFIX refers to the prefixes they have. They're similar to the [[Item_Filtering#Numbered_Attribute_Codes|numbered attribute codes]], but refer to affixes rather than affix attributes.
 
Unlike other value conditions, IDs for SUFFIX and PREFIX are not all mutually exclusive with eachother. Rules can have multiple SUFFIX or PREFIX conditions and still match with valid items.
 
<code>ItemDisplay[RARE SUFFIX=662 SUFFIX=158]: %NAME% %RED%!</code> <span style="color:gray;">''appends a red '''!''' to rare items that have a chance to cast Amplify Damage on hit and also have Ignore Target's Defense''</span>
 
AUTOMOD functions much the same as SUFFIX and PREFIX.
 
Two of the three basic comparison operators ('''<''' and '''>''') cannot be reliably used with SUFFIX or PREFIX, but the "BETWEEN" comparison operator ('''~''') works well with them - it was actually developed specifically for them. Since multiple PREFIX or SUFFIX conditions are not mutually exclusive with themselves, ID ranges would not be able to be referred to accurately with only '''<''' and '''>'''. The "BETWEEN" operator condenses the ranges to a single condition so that it can be evaluated as either true or fase, and is much more convenient than creating large groups of conditions using only '''=''' as comparison operators.
 
<code>ItemDisplay[cm3 PREFIX>1278 PREFIX<1354]: %NAME% +1</code> <span style="color:gray;">''no effect (don't use)''</span>
 
<code>ItemDisplay[cm3 (PREFIX=1279 OR PREFIX=1280 OR PREFIX=1281 OR PREFIX=1291 OR PREFIX=1292 OR PREFIX=1293 OR PREFIX=1303 OR PREFIX=1304 OR PREFIX=1305 OR PREFIX=1315 OR PREFIX=1316 OR PREFIX=1317 OR PREFIX=1327 OR PREFIX=1328 OR PREFIX=1329 OR PREFIX=1339 OR PREFIX=1340 OR PREFIX=1341 OR PREFIX=1351 OR PREFIX=1352 OR PREFIX=1353)]: %NAME% +1</code> <span style="color:gray;">''appends '''+1''' to any grand charm with a skill''</span>
 
<code>ItemDisplay[cm3 PREFIX~1279-1353]: %NAME% +1</code> <span style="color:gray;">''appends '''+1''' to any grand charm with a skill (same as above)''</span>
 
External Chart of IDs: [https://docs.google.com/spreadsheets/d/1J5_V3bIloualyzb5_lDFueSSCcQyyPEkKYvoQR9Ve9Y/ Affix IDs]
 
<!--T:145-->
{| class="wikitable sortable mw-collapsible mw-collapsed"
|+ style="white-space:nowrap; text-align:left;" | PREFIX IDs
|-
! ID !! Name !! rare !! level !! levelreq !! mod1code !! mod1min !! mod1max !! mod2code !! mod2min !! mod2max !! mod3code !! mod3min !! mod3max !! itype1 !! itype2 !! itype3 !! itype4 !! itype5 !! itype6 !! itype7 !! etype1 !! etype2 !! etype3
|-
| || || || || || || || || || || || || || || || || || || || || || || ||
|-
| 968 || Stout || 1 || 1 || 1 || ac || 3 || 5 || || || || || || || lcha || || || || || || || || ||
|-
| 969 || Stout || 1 || 7 || 5 || ac || 6 || 9 || || || || || || || lcha || || || || || || || || ||
|-
| 970 || Stout || 1 || 12 || 9 || ac || 10 || 12 || || || || || || || lcha || || || || || || || || ||
|-
| 971 || Burly || 1 || 17 || 12 || ac || 13 || 15 || || || || || || || lcha || || || || || || || || ||
|-
| 972 || Burly || 1 || 22 || 16 || ac || 16 || 22 || || || || || || || lcha || || || || || || || || ||
|-
| 973 || Burly || 1 || 27 || 20 || ac || 23 || 30 || || || || || || || lcha || || || || || || || || ||
|-
| 974 || Stalwart || || 32 || 24 || ac || 33 || 40 || || || || || || || lcha || || || || || || || || ||
|-
| 975 || Stalwart || || 37 || 29 || ac || 44 || 50 || || || || || || || lcha || || || || || || || || ||
|-
| 976 || Stalwart || || 42 || 34 || ac || 60 || 100 || || || || || || || lcha || || || || || || || || ||
|-
| 977 || Stout || 1 || 1 || 1 || ac || 2 || 3 || || || || || || || mcha || || || || || || || || ||
|-
| 978 || Stout || 1 || 14 || 10 || ac || 4 || 6 || || || || || || || mcha || || || || || || || || ||
|-
| 979 || Stout || 1 || 20 || 15 || ac || 8 || 12 || || || || || || || mcha || || || || || || || || ||
|-
| 980 || Burly || 1 || 26 || 19 || ac || 13 || 18 || || || || || || || mcha || || || || || || || || ||
|-
| 981 || Burly || 1 || 32 || 24 || ac || 20 || 30 || || || || || || || mcha || || || || || || || || ||
|-
| 982 || Stalwart || || 38 || 30 || ac || 30 || 40 || || || || || || || mcha || || || || || || || || ||
|-
| 983 || Stalwart || || 45 || 37 || ac || 45 || 60 || || || || || || || mcha || || || || || || || || ||
|-
| 984 || Stout || 1 || 1 || 1 || ac || 1 || 1 || || || || || || || scha || || || || || || || || ||
|-
| 985 || Stout || 1 || 21 || 15 || ac || 4 || 8 || || || || || || || scha || || || || || || || || ||
|-
| 986 || Burly || 1 || 36 || 28 || ac || 15 || 20 || || || || || || || scha || || || || || || || || ||
|-
| 987 || Stalwart || || 48 || 40 || ac || 20 || 30 || || || || || || || scha || || || || || || || || ||
|-
| 988 || Blanched || 1 || 1 || 1 || ac || 5 || 8 || || || || || || || jewl || || || || || || || || ||
|-
| 989 || Eburin || 1 || 16 || 12 || ac || 9 || 20 || || || || || || || jewl || || || || || || || || ||
|-
| 990 || Bone || 1 || 32 || 24 || ac || 21 || 40 || || || || || || || jewl || || || || || || || || ||
|-
| 991 || Ivory || || 64 || 56 || ac || 41 || 64 || || || || || || || jewl || || || || || || || || ||
|-
| 992 || Sturdy || 1 || 1 || 1 || ac% || 10 || 20 || || || || || || || armo || || || || || || || || ||
|-
| 993 || Sturdy || 1 || 4 || 3 || ac% || 21 || 30 || || || || || || || armo || || || || || || || || ||
|-
| 994 || Strong || 1 || 9 || 6 || ac% || 31 || 40 || || || || || || || armo || || || || || || || || ||
|-
| 995 || Glorious || 1 || 19 || 14 || ac% || 41 || 50 || || || || || || || armo || || || || || || || || ||
|-
| 996 || Blessed || 1 || 25 || 18 || ac% || 51 || 65 || || || || || || || armo || || || || || || || || ||
|-
| 997 || Saintly || 1 || 31 || 23 || ac% || 66 || 80 || || || || || || || armo || || || || || || || || ||
|-
| 998 || Holy || 1 || 36 || 27 || ac% || 81 || 100 || || || || || || || armo || || || || || || || || ||
|-
| 999 || Godly || || 45 || 38 || ac% || 101 || 200 || || || || || || || armo || || || || || || || || ||
|-
| || || || || || || || || || || || || || || || || || || || || || || ||
|-
| 1015 || Scarlet || 1 || 8 || 6 || dmg-min || 1 || 4 || || || || || || || jewl || misl || || || || || || || ||
|-
| 1016 || Crimson || 1 || 38 || 30 || dmg-min || 5 || 8 || || || || || || || jewl || misl || || || || || || || ||
|-
| || || || || || || || || || || || || || || || || || || || || || || ||
|-
| 1032 || Carbuncle || 1 || 12 || 9 || dmg-max || 1 || 5 || || || || || || || jewl || misl || || || || || || || ||
|-
| 1033 || Carmine || 1 || 35 || 27 || dmg-max || 6 || 9 || || || || || || || jewl || misl || || || || || || || ||
|-
| 1034 || Vermillion || 1 || 58 || 50 || dmg-max || 11 || 15 || || || || || || || jewl || misl || || || || || || || ||
|-
| 1035 || Jagged || 1 || 1 || 1 || dmg% || 10 || 20 || || || || || || || weap || circ || misl || || || || || staf || wand || orb
|-
| 1036 || Deadly || 1 || 5 || 3 || dmg% || 21 || 30 || || || || || || || weap || circ || misl || || || || || staf || wand || orb
|-
| 1037 || Vicious || 1 || 8 || 6 || dmg% || 31 || 40 || || || || || || || weap || misl || || || || || || staf || wand || orb
|-
| 1038 || Brutal || 1 || 14 || 10 || dmg% || 41 || 50 || || || || || || || weap || misl || || || || || || staf || wand || orb
|-
| 1039 || Massive || 1 || 20 || 15 || dmg% || 51 || 65 || || || || || || || weap || misl || || || || || || staf || wand || orb
|-
| 1040 || Savage || 1 || 26 || 19 || dmg% || 66 || 80 || || || || || || || weap || || || || || || || staf || wand || orb
|-
| 1041 || Merciless || 1 || 32 || 24 || dmg% || 81 || 100 || || || || || || || weap || || || || || || || staf || wand || orb
|-
| 1042 || Ferocious || 1 || 41 || 33 || dmg% || 101 || 200 || || || || || || || weap || || || || || || || staf || wand || orb
|-
| 1043 || Cruel || || 51 || 43 || dmg% || 201 || 300 || || || || || || || weap || || || || || || || staf || wand || orb
|-
| 1044 || Cinnabar || 1 || 1 || 1 || dmg% || 5 || 10 || || || || || || || jewl || || || || || || || || ||
|-
| 1045 || Rusty || 1 || 13 || 9 || dmg% || 11 || 20 || || || || || || || jewl || || || || || || || || ||
|-
| 1046 || Realgar || 1 || 45 || 37 || dmg% || 21 || 30 || || || || || || || jewl || || || || || || || || ||
|-
| 1047 || Ruby || 1 || 66 || 58 || dmg% || 31 || 40 || || || || || || || jewl || || || || || || || || ||
|-
| 1048 || Vulpine || 1 || 9 || 6 || dmg-to-mana || 7 || 12 || || || || || || || shld || amul || orb || staf || || || || || ||
|-
| 1049 || Dun || 1 || 7 || 5 || dmg-to-mana || 7 || 12 || || || || || || || jewl || || || || || || || || ||
|-
| 1050 || Tireless || 1 || 6 || 4 || regen-stam || 25 || 25 || || || || || || || boot || || || || || || || || ||
|-
| 1051 || Tireless || 1 || 14 || 10 || regen-stam || 50 || 50 || || || || || || || boot || || || || || || || || ||
|-
| 1052 || Brown || 1 || 39 || 31 || regen-stam || 10 || 15 || || || || || || || jewl || || || || || || || || ||
|-
| 1053 || Rugged || 1 || 1 || 1 || stam || 12 || 24 || || || || || || || lcha || || || || || || || || ||
|-
| 1054 || Rugged || 1 || 7 || 5 || stam || 25 || 36 || || || || || || || lcha || || || || || || || || ||
|-
| 1055 || Rugged || 1 || 21 || 15 || stam || 37 || 50 || || || || || || || lcha || || || || || || || || ||
|-
| 1056 || Rugged || 1 || 1 || || stam || 8 || 16 || || || || || || || mcha || || || || || || || || ||
|-
| 1057 || Rugged || 1 || 7 || 5 || stam || 17 || 25 || || || || || || || mcha || || || || || || || || ||
|-
| 1058 || Rugged || 1 || 21 || 15 || stam || 26 || 32 || || || || || || || mcha || || || || || || || || ||
|-
| 1059 || Rugged || 1 || 1 || || stam || 4 || 8 || || || || || || || scha || || || || || || || || ||
|-
| 1060 || Rugged || 1 || 21 || 15 || stam || 9 || 16 || || || || || || || scha || || || || || || || || ||
|-
| 1061 || Rugged || 1 || 1 || 1 || stam || 5 || 10 || || || || || || || boot || glov || belt || ring || amul || circ || || || ||
|-
| 1062 || Rugged || 1 || 8 || 6 || stam || 11 || 20 || || || || || || || boot || belt || || || || || || || ||
|-
| 1063 || Rugged || 1 || 8 || 6 || stam || 11 || 20 || || || || || || || ring || amul || circ || || || || || || ||
|-
| 1064 || Vigorous || 1 || 16 || 12 || stam || 21 || 30 || || || || || || || boot || belt || || || || || || || ||
|-
| 1065 || Chestnut || 1 || 1 || 1 || stam || 10 || 15 || || || || || || || jewl || || || || || || || || ||
|-
| 1066 || Maroon || 1 || 17 || 12 || stam || 16 || 25 || || || || || || || jewl || || || || || || || || ||
|-
| 1067 || Bronze || 1 || 1 || 1 || att || 6 || 12 || || || || || || || lcha || || || || || || || || ||
|-
| 1068 || Bronze || 1 || 7 || 5 || att || 13 || 27 || || || || || || || lcha || || || || || || || || ||
|-
| 1069 || Bronze || 1 || 13 || 9 || att || 28 || 42 || || || || || || || lcha || || || || || || || || ||
|-
| 1070 || Iron || 1 || 19 || 14 || att || 43 || 57 || || || || || || || lcha || || || || || || || || ||
|-
| 1071 || Iron || 1 || 25 || 18 || att || 58 || 72 || || || || || || || lcha || || || || || || || || ||
|-
| 1072 || Iron || 1 || 31 || 23 || att || 73 || 87 || || || || || || || lcha || || || || || || || || ||
|-
| 1073 || Steel || || 37 || 29 || att || 88 || 102 || || || || || || || lcha || || || || || || || || ||
|-
| 1074 || Steel || || 43 || 35 || att || 103 || 117 || || || || || || || lcha || || || || || || || || ||
|-
| 1075 || Steel || || 49 || 41 || att || 118 || 132 || || || || || || || lcha || || || || || || || || ||
|-
| 1076 || Bronze || 1 || 1 || 1 || att || 4 || 8 || || || || || || || mcha || || || || || || || || ||
|-
| 1077 || Bronze || 1 || 7 || 5 || att || 6 || 12 || || || || || || || mcha || || || || || || || || ||
|-
| 1078 || Bronze || 1 || 16 || 12 || att || 13 || 25 || || || || || || || mcha || || || || || || || || ||
|-
| 1079 || Iron || 1 || 25 || 18 || att || 26 || 38 || || || || || || || mcha || || || || || || || || ||
|-
| 1080 || Iron || 1 || 34 || 26 || att || 39 || 51 || || || || || || || mcha || || || || || || || || ||
|-
| 1081 || Steel || || 43 || 36 || att || 52 || 64 || || || || || || || mcha || || || || || || || || ||
|-
| 1082 || Steel || || 52 || 44 || att || 65 || 77 || || || || || || || mcha || || || || || || || || ||
|-
| 1083 || Bronze || 1 || 1 || 1 || att || 2 || 4 || || || || || || || scha || || || || || || || || ||
|-
| 1084 || Bronze || 1 || 21 || 15 || att || 6 || 12 || || || || || || || scha || || || || || || || || ||
|-
| 1085 || Iron || 1 || 39 || 31 || att || 13 || 24 || || || || || || || scha || || || || || || || || ||
|-
| 1086 || Steel || || 57 || 49 || att || 25 || 36 || || || || || || || scha || || || || || || || || ||
|-
| 1087 || Bronze || 1 || 1 || 1 || att || 10 || 20 || || || || || || || weap || ring || glov || amul || circ || helm || tors || staf || wand || orb
|-
| 1088 || Iron || 1 || 4 || 3 || att || 21 || 40 || || || || || || || weap || ring || circ || glov || helm || tors || || staf || wand || orb
|-
| 1089 || Steel || 1 || 8 || 6 || att || 41 || 60 || || || || || || || weap || ring || circ || glov || helm || tors || || staf || wand || orb
|-
| 1090 || Silver || 1 || 12 || 9 || att || 61 || 80 || || || || || || || weap || ring || circ || glov || helm || tors || misl || staf || wand || orb
|-
| 1091 || Gold || 1 || 17 || 12 || att || 81 || 100 || || || || || || || weap || ring || circ || glov || helm || tors || misl || staf || wand || orb
|-
| 1092 || Platinum || 1 || 22 || 16 || att || 101 || 120 || || || || || || || weap || ring || circ || glov || helm || tors || misl || staf || wand || orb
|-
| 1093 || Meteoric || 1 || 27 || 20 || att || 121 || 150 || || || || || || || weap || misl || || || || || || staf || wand || orb
|-
| 1094 || Strange || 1 || 32 || 24 || att || 151 || 300 || || || || || || || weap || || || || || || || staf || wand || orb
|-
| 1095 || Weird || || 37 || 27 || att || 301 || 450 || || || || || || || weap || || || || || || || staf || wand || orb
|-
| 1096 || Nickel || 1 || 1 || 1 || att || 10 || 20 || || || || || || || jewl || || || || || || || || ||
|-
| 1097 || Tin || 1 || 8 || 6 || att || 21 || 40 || || || || || || || jewl || || || || || || || || ||
|-
| 1098 || Silver || 1 || 25 || 18 || att || 41 || 60 || || || || || || || jewl || || || || || || || || ||
|-
| 1099 || Argent || 1 || 44 || 36 || att || 61 || 100 || || || || || || || jewl || || || || || || || || ||
|-
| 1100 || Fine || 1 || 15 || 11 || att || 10 || 20 || dmg-max || 1 || 3 || || || || lcha || || || || || || || || ||
|-
| 1101 || Fine || 1 || 22 || 16 || att || 21 || 48 || dmg-max || 4 || 6 || || || || lcha || || || || || || || || ||
|-
| 1102 || Sharp || 1 || 29 || 21 || att || 49 || 76 || dmg-max || 7 || 10 || || || || lcha || || || || || || || || ||
|-
| 1103 || Fine || 1 || 19 || 14 || att || 10 || 20 || dmg-max || 1 || 3 || || || || mcha || || || || || || || || ||
|-
| 1104 || Sharp || 1 || 28 || 21 || att || 21 || 48 || dmg-max || 4 || 6 || || || || mcha || || || || || || || || ||
|-
| 1105 || Fine || || 28 || 21 || att || 10 || 20 || dmg-max || 1 || 3 || || || || scha || || || || || || || || ||
|-
| 1106 || Sharp || 1 || 5 || 3 || att || 10 || 20 || dmg% || 10 || 20 || || || || weap || || || || || || || staf || wand || orb
|-
| 1107 || Fine || 1 || 12 || 9 || att || 21 || 40 || dmg% || 21 || 30 || || || || weap || || || || || || || staf || wand || orb
|-
| 1108 || Warrior's || 1 || 19 || 13 || att || 41 || 60 || dmg% || 31 || 40 || || || || weap || || || || || || || staf || wand || orb
|-
| 1109 || Soldier's || 1 || 27 || 19 || att || 61 || 80 || dmg% || 41 || 50 || || || || weap || || || || || || || staf || wand || orb
|-
| 1110 || Knight's || 1 || 38 || 30 || att || 81 || 100 || dmg% || 51 || 65 || || || || weap || || || || || || || staf || wand || orb
|-
| 1111 || Lord's || 1 || 47 || 39 || att || 101 || 120 || dmg% || 66 || 80 || || || || weap || || || || || || || staf || wand || orb
|-
| 1112 || King's || 1 || 56 || 48 || att || 121 || 150 || dmg% || 81 || 100 || || || || weap || || || || || || || staf || wand || orb
|-
| 1113 || Master's || 1 || 56 || 48 || att || 151 || 250 || dmg% || 101 || 150 || || || || weap || || || || || || || staf || wand || orb
|-
| 1114 || Grandmaster's || || 69 || 61 || att || 251 || 300 || dmg% || 151 || 200 || || || || weap || || || || || || || staf || wand || orb
|-
| 1115 || Glimmering || 1 || 1 || 1 || light || 1 || 1 || || || || || || || armo || wand || staf || ring || amul || orb || || || ||
|-
| 1116 || Glowing || 1 || 6 || 4 || light || 2 || 2 || || || || || || || armo || wand || staf || ring || amul || orb || || || ||
|-
| 1117 || Bright || 1 || 1 || 1 || light || 1 || 1 || att || 10 || 10 || || || || jewl || || || || || || || || ||
|-
| 1118 || Screaming || 1 || 10 || 7 || howl || 32 || 32 || || || || || || || blun || knif || h2h || orb || || || || || ||
|-
| 1119 || Howling || 1 || 16 || 12 || howl || 64 || 64 || || || || || || || blun || knif || h2h || orb || || || || || ||
|-
| 1120 || Wailing || 1 || 20 || 13 || howl || 128 || 128 || || || || || || || blun || knif || h2h || orb || || || || || ||
|-
| 1121 || Screaming || 1 || 10 || 7 || howl || 16 || 16 || || || || || || || miss || || || || || || || || ||
|-
| 1122 || Howling || 1 || 16 || 12 || howl || 24 || 24 || || || || || || || miss || || || || || || || || ||
|-
| 1123 || Wailing || || 24 || 18 || howl || 32 || 32 || || || || || || || miss || || || || || || || || ||
|-
| 1124 || Lucky || 1 || 21 || || mag% || 1 || 4 || || || || || || || lcha || || || || || || || || ||
|-
| 1125 || Lucky || || 38 || || mag% || 5 || 7 || || || || || || || lcha || || || || || || || || ||
|-
| 1126 || Lucky || || 55 || || mag% || 8 || 12 || || || || || || || lcha || || || || || || || || ||
|-
| 1127 || Lucky || 1 || 34 || || mag% || 1 || 1 || || || || || || || mcha || || || || || || || || ||
|-
| 1128 || Lucky || || 53 || || mag% || 2 || 3 || || || || || || || mcha || || || || || || || || ||
|-
| 1129 || Lucky || || 51 || || mag% || 4 || 6 || || || || || || || mcha || || || || || || || || ||
|-
| 1130 || Felicitous || 1 || 5 || 3 || mag% || 5 || 10 || || || || || || || ring || amul || circ || helm || || || || || ||
|-
| 1131 || Fortuitous || 1 || 12 || 8 || mag% || 11 || 15 || || || || || || || ring || amul || circ || helm || || || || || ||
|-
| 1132 || Emerald || 1 || 16 || 12 || mag% || 3 || 7 || || || || || || || jewl || || || || || || || || ||
|-
| 1133 || Lizard's || 1 || 1 || 1 || mana || 3 || 7 || || || || || || || lcha || || || || || || || || ||
|-
| 1134 || Lizard's || 1 || 7 || 5 || mana || 8 || 13 || || || || || || || lcha || || || || || || || || ||
|-
| 1135 || Lizard's || 1 || 13 || 9 || mana || 14 || 20 || || || || || || || lcha || || || || || || || || ||
|-
| 1136 || Snake's || 1 || 19 || 14 || mana || 21 || 26 || || || || || || || lcha || || || || || || || || ||
|-
| 1137 || Snake's || 1 || 25 || 18 || mana || 27 || 33 || || || || || || || lcha || || || || || || || || ||
|-
| 1138 || Snake's || 1 || 31 || 23 || mana || 34 || 39 || || || || || || || lcha || || || || || || || || ||
|-
| 1139 || Serpent's || 1 || 37 || 29 || mana || 40 || 46 || || || || || || || lcha || || || || || || || || ||
|-
| 1140 || Serpent's || 1 || 43 || 35 || mana || 47 || 52 || || || || || || || lcha || || || || || || || || ||
|-
| 1141 || Serpent's || 1 || 49 || 41 || mana || 53 || 59 || || || || || || || lcha || || || || || || || || ||
|-
| 1142 || Lizard's || 1 || 1 || 1 || mana || 2 || 4 || || || || || || || mcha || || || || || || || || ||
|-
| 1143 || Lizard's || 1 || 9 || 6 || mana || 5 || 7 || || || || || || || mcha || || || || || || || || ||
|-
| 1144 || Lizard's || 1 || 17 || 12 || mana || 8 || 12 || || || || || || || mcha || || || || || || || || ||
|-
| 1145 || Snake's || 1 || 25 || 18 || mana || 13 || 18 || || || || || || || mcha || || || || || || || || ||
|-
| 1146 || Snake's || 1 || 33 || 25 || mana || 19 || 23 || || || || || || || mcha || || || || || || || || ||
|-
| 1147 || Serpent's || 1 || 41 || 33 || mana || 24 || 29 || || || || || || || mcha || || || || || || || || ||
|-
| 1148 || Serpent's || 1 || 49 || 41 || mana || 30 || 34 || || || || || || || mcha || || || || || || || || ||
|-
| 1149 || Lizard's || 1 || 16 || 12 || mana || 1 || 2 || || || || || || || scha || || || || || || || || ||
|-
| 1150 || Lizard's || 1 || 16 || 12 || mana || 3 || 7 || || || || || || || scha || || || || || || || || ||
|-
| 1151 || Snake's || 1 || 32 || 24 || mana || 8 || 12 || || || || || || || scha || || || || || || || || ||
|-
| 1152 || Serpent's || || 48 || 40 || mana || 13 || 17 || || || || || || || scha || || || || || || || || ||
|-
| 1153 || Lizard's || 1 || 3 || 2 || mana || 3 || 5 || || || || || || || armo || ring || amul || rod || orb || || || boot || glov ||
|-
| 1154 || Snake's || 1 || 6 || 4 || mana || 5 || 10 || || || || || || || shld || rod || belt || ring || amul || circ || misl || || ||
|-
| 1155 || Serpent's || 1 || 14 || 10 || mana || 11 || 20 || || || || || || || shld || rod || belt || ring || amul || circ || misl || || ||
|-
| 1156 || Serpent's || 1 || 37 || 27 || mana || 11 || 20 || || || || || || || tors || boot || glov || weap || orb || || || rod || ||
|-
| 1157 || Drake's || 1 || 20 || 15 || mana || 21 || 30 || || || || || || || rod || ring || amul || orb || circ || misl || || || ||
|-
| 1158 || Dragon's || 1 || 24 || 18 || mana || 31 || 40 || || || || || || || rod || ring || amul || orb || circ || misl || || || ||
|-
| 1159 || Dragon's || 1 || 52 || 39 || mana || 31 || 40 || || || || || || || tors || boot || glov || || || || || || ||
|-
| 1160 || Wyrm's || 1 || 30 || 22 || mana || 41 || 60 || || || || || || || rod || ring || amul || orb || circ || || || || ||
|-
| 1161 || Great Wyrm's || 1 || 37 || 29 || mana || 61 || 90 || || || || || || || rod || ring || amul || orb || circ || || || || ||
|-
| 1162 || Bahamut's || 1 || 45 || 37 || mana || 91 || 120 || || || || || || || rod || ring || amul || orb || circ || || || || ||
|-
| 1163 || Zircon || 1 || 3 || 2 || mana || 5 || 10 || || || || || || || jewl || || || || || || || || ||
|-
| 1164 || Jacinth || 1 || 17 || 12 || mana || 11 || 15 || || || || || || || jewl || || || || || || || || ||
|-
| 1165 || Turquoise || 1 || 29 || 21 || mana || 16 || 20 || || || || || || || jewl || || || || || || || || ||
|-
| 1166 || Shimmering || || 8-13 || 6 || res-all || 3 || 6 || || || || || || || lcha || || || || || || || || ||
|-
| 1167 || Shimmering || || 14-34 || 10 || res-all || 8 || 12 || || || || || || || lcha || || || || || || || || ||
|-
| 1168 || Shimmering || || 35 || 27 || res-all || 13 || 15 || || || || || || || lcha || || || || || || || || ||
|-
| 1169 || Shimmering || || 17-33 || 12 || res-all || 3 || 5 || || || || || || || mcha || || || || || || || || ||
|-
| 1170 || Shimmering || || 34 || 26 || res-all || 6 || 8 || || || || || || || mcha || || || || || || || || ||
|-
| 1171 || Shimmering || || 33 || 25 || res-all || 3 || 5 || || || || || || || scha || || || || || || || || ||
|-
| 1172 || Shimmering || 1 || 6 || 4 || res-all || 3 || 7 || || || || || || || shld || || || || || || || || ||
|-
| 1173 || Rainbow || 1 || 18 || 13 || res-all || 8 || 11 || || || || || || || shld || || || || || || || || ||
|-
| 1174 || Scintillating || 1 || 28 || 21 || res-all || 12 || 15 || || || || || || || shld || || || || || || || || ||
|-
| 1175 || Prismatic || 1 || 39 || 31 || res-all || 16 || 20 || || || || || || || shld || || || || || || || || ||
|-
| 1176 || Chromatic || 1 || 50 || 42 || res-all || 21 || 30 || || || || || || || shld || || || || || || || || ||
|-
| 1177 || Shimmering || 1 || 8 || 6 || res-all || 3 || 7 || || || || || || || amul || circ || || || || || || || ||
|-
| 1178 || Rainbow || 1 || 21 || 15 || res-all || 8 || 11 || || || || || || || amul || circ || || || || || || || ||
|-
| 1179 || Scintillating || 1 || 34 || 25 || res-all || 12 || 15 || || || || || || || amul || circ || misl || || || || || || ||
|-
| 1180 || Prismatic || 1 || 42 || 31 || res-all || 16 || 20 || || || || || || || amul || circ || || || || || || || ||
|-
| 1181 || Chromatic || || 55 || 41 || res-all || 21 || 30 || || || || || || || amul || circ || || || || || || || ||
|-
| 1182 || Shimmering || 1 || 45 || 37 || res-all || 3 || 7 || || || || || || || ring || || || || || || || || ||
|-
| 1183 || Rainbow || 1 || 56 || 48 || res-all || 8 || 11 || || || || || || || ring || || || || || || || || ||
|-
| 1184 || Scintillating || || 67 || 59 || res-all || 12 || 15 || || || || || || || ring || || || || || || || || ||
|-
| 1185 || Shimmering || 1 || 16 || 12 || res-all || 5 || 10 || || || || || || || jewl || misl || || || || || || || ||
|-
| 1186 || Scintillating || || 34 || 26 || res-all || 11 || 15 || || || || || || || jewl || || || || || || || || ||
|-
| 1187 || Azure || 1 || 1 || 1 || res-cold || 7 || 15 || || || || || || || lcha || || || || || || || || ||
|-
| 1188 || Lapis || 1 || 10 || 7 || res-cold || 16 || 20 || || || || || || || lcha || || || || || || || || ||
|-
| 1189 || Cobalt || 1 || 20 || 15 || res-cold || 21 || 25 || || || || || || || lcha || || || || || || || || ||
|-
| 1190 || Sapphire || || 30 || 22 || res-cold || 26 || 30 || || || || || || || lcha || || || || || || || || ||
|-
| 1191 || Azure || 1 || 1 || 1 || res-cold || 4 || 7 || || || || || || || mcha || || || || || || || || ||
|-
| 1192 || Lapis || 1 || 16 || 12 || res-cold || 8 || 10 || || || || || || || mcha || || || || || || || || ||
|-
| 1193 || Cobalt || 1 || 25 || 18 || res-cold || 11 || 12 || || || || || || || mcha || || || || || || || || ||
|-
| 1194 || Sapphire || || 35 || 27 || res-cold || 13 || 15 || || || || || || || mcha || || || || || || || || ||
|-
| 1195 || Azure || 1 || 1 || 1 || res-cold || 3 || 5 || || || || || || || scha || || || || || || || || ||
|-
| 1196 || Lapis || 1 || 14 || 10 || res-cold || 6 || 7 || || || || || || || scha || || || || || || || || ||
|-
| 1197 || Cobalt || 1 || 27 || 20 || res-cold || 8 || 9 || || || || || || || scha || || || || || || || || ||
|-
| 1198 || Sapphire || || 40 || 32 || res-cold || 10 || 11 || || || || || || || scha || || || || || || || || ||
|-
| 1199 || Azure || 1 || 5 || 3 || res-cold || 5 || 10 || || || || || || || armo || weap || ring || amul || orb || circ || misl || || ||
|-
| 1200 || Lapis || 1 || 12 || 9 || res-cold || 11 || 20 || || || || || || || armo || ring || amul || orb || circ || misl || || || ||
|-
| 1201 || Lapis || 1 || 35 || 26 || res-cold || 11 || 20 || || || || || || || weap || || || || || || || orb || ||
|-
| 1202 || Cobalt || 1 || 18 || 13 || res-cold || 21 || 30 || || || || || || || armo || ring || amul || orb || circ || misl || || || ||
|-
| 1203 || Cobalt || 1 || 55 || 41 || res-cold || 21 || 30 || || || || || || || weap || || || || || || || orb || ||
|-
| 1204 || Sapphire || 1 || 25 || 18 || res-cold || 31 || 40 || || || || || || || rod || boot || amul || orb || circ || || || || ||
|-
| 1205 || Lapis Lazuli || 1 || 2 || 1 || res-cold || 5 || 15 || || || || || || || jewl || || || || || || || || ||
|-
| 1206 || Sapphire || 1 || 19 || 14 || res-cold || 16 || 30 || || || || || || || jewl || || || || || || || || ||
|-
| 1207 || Crimson || 1 || 1 || 1 || res-fire || 7 || 15 || || || || || || || lcha || || || || || || || || ||
|-
| 1208 || Russet || 1 || 10 || 7 || res-fire || 16 || 20 || || || || || || || lcha || || || || || || || || ||
|-
| 1209 || Garnet || 1 || 20 || 15 || res-fire || 21 || 25 || || || || || || || lcha || || || || || || || || ||
|-
| 1210 || Ruby || || 30 || 22 || res-fire || 26 || 30 || || || || || || || lcha || || || || || || || || ||
|-
| 1211 || Crimson || 1 || 1 || 1 || res-fire || 4 || 7 || || || || || || || mcha || || || || || || || || ||
|-
| 1212 || Russet || 1 || 16 || 12 || res-fire || 8 || 10 || || || || || || || mcha || || || || || || || || ||
|-
| 1213 || Garnet || 1 || 25 || 18 || res-fire || 11 || 12 || || || || || || || mcha || || || || || || || || ||
|-
| 1214 || Ruby || || 35 || 27 || res-fire || 13 || 15 || || || || || || || mcha || || || || || || || || ||
|-
| 1215 || Crimson || 1 || 1 || 1 || res-fire || 3 || 5 || || || || || || || scha || || || || || || || || ||
|-
| 1216 || Russet || 1 || 14 || 10 || res-fire || 6 || 7 || || || || || || || scha || || || || || || || || ||
|-
| 1217 || Garnet || || 27 || 20 || res-fire || 8 || 9 || || || || || || || scha || || || || || || || || ||
|-
| 1218 || Ruby || 1 || 40 || 32 || res-fire || 10 || 11 || || || || || || || scha || || || || || || || || ||
|-
| 1219 || Russet || 1 || 12 || 9 || res-fire || 11 || 20 || || || || || || || armo || ring || amul || orb || circ || misl || || || ||
|-
| 1220 || Russet || 1 || 35 || 26 || res-fire || 11 || 20 || || || || || || || weap || || || || || || || orb || ||
|-
| 1221 || Garnet || 1 || 18 || 13 || res-fire || 21 || 30 || || || || || || || armo || ring || amul || orb || circ || misl || || || ||
|-
| 1222 || Garnet || 1 || 55 || 41 || res-fire || 21 || 30 || || || || || || || weap || || || || || || || orb || ||
|-
| 1223 || Ruby || 1 || 25 || 18 || res-fire || 31 || 40 || || || || || || || rod || boot || amul || orb || circ || || || || ||
|-
| 1224 || Garnet || 1 || 2 || 1 || res-fire || 5 || 15 || || || || || || || jewl || || || || || || || || ||
|-
| 1225 || Ruby || 1 || 18 || 13 || res-fire || 16 || 30 || || || || || || || jewl || || || || || || || || ||
|-
| 1226 || Tangerine || 1 || 1 || 1 || res-ltng || 7 || 15 || || || || || || || lcha || || || || || || || || ||
|-
| 1227 || Ocher || 1 || 10 || 7 || res-ltng || 16 || 20 || || || || || || || lcha || || || || || || || || ||
|-
| 1228 || Coral || 1 || 20 || 15 || res-ltng || 21 || 25 || || || || || || || lcha || || || || || || || || ||
|-
| 1229 || Amber || || 30 || 22 || res-ltng || 26 || 30 || || || || || || || lcha || || || || || || || || ||
|-
| 1230 || Tangerine || 1 || 1 || 1 || res-ltng || 4 || 7 || || || || || || || mcha || || || || || || || || ||
|-
| 1231 || Ocher || 1 || 16 || 12 || res-ltng || 8 || 10 || || || || || || || mcha || || || || || || || || ||
|-
| 1232 || Coral || 1 || 25 || 18 || res-ltng || 11 || 12 || || || || || || || mcha || || || || || || || || ||
|-
| 1233 || Amber || || 35 || 27 || res-ltng || 13 || 15 || || || || || || || mcha || || || || || || || || ||
|-
| 1234 || Tangerine || 1 || 1 || 1 || res-ltng || 3 || 5 || || || || || || || scha || || || || || || || || ||
|-
| 1235 || Ocher || 1 || 14 || 10 || res-ltng || 6 || 7 || || || || || || || scha || || || || || || || || ||
|-
| 1236 || Coral || 1 || 27 || 20 || res-ltng || 8 || 9 || || || || || || || scha || || || || || || || || ||
|-
| 1237 || Amber || || 40 || 32 || res-ltng || 10 || 11 || || || || || || || scha || || || || || || || || ||
|-
| 1238 || Tangerine || 1 || 5 || 3 || res-ltng || 5 || 10 || || || || || || || armo || weap || ring || amul || orb || circ || misl || || ||
|-
| 1239 || Ocher || 1 || 12 || 9 || res-ltng || 11 || 20 || || || || || || || armo || ring || amul || orb || circ || misl || || || ||
|-
| 1240 || Ocher || 1 || 35 || 26 || res-ltng || 11 || 20 || || || || || || || weap || || || || || || || orb || ||
|-
| 1241 || Coral || 1 || 18 || 13 || res-ltng || 21 || 30 || || || || || || || armo || ring || amul || orb || circ || misl || || || ||
|-
| 1242 || Coral || 1 || 55 || 41 || res-ltng || 21 || 30 || || || || || || || weap || || || || || || || orb || ||
|-
| 1243 || Amber || 1 || 25 || 18 || res-ltng || 31 || 40 || || || || || || || rod || boot || amul || orb || circ || || || || ||
|-
| 1244 || Camphor || 1 || 2 || 1 || res-ltng || 5 || 15 || || || || || || || jewl || || || || || || || || ||
|-
| 1245 || Ambergris || 1 || 19 || 14 || res-ltng || 16 || 30 || || || || || || || jewl || || || || || || || || ||
|-
| 1246 || Beryl || 1 || 1 || 1 || res-pois || 7 || 15 || || || || || || || lcha || || || || || || || || ||
|-
| 1247 || Viridian || 1 || 10 || 7 || res-pois || 16 || 20 || || || || || || || lcha || || || || || || || || ||
|-
| 1248 || Jade || 1 || 20 || 15 || res-pois || 21 || 25 || || || || || || || lcha || || || || || || || || ||
|-
| 1249 || Emerald || || 30 || 22 || res-pois || 26 || 30 || || || || || || || lcha || || || || || || || || ||
|-
| 1250 || Beryl || 1 || 1 || 1 || res-pois || 4 || 7 || || || || || || || mcha || || || || || || || || ||
|-
| 1251 || Viridian || 1 || 16 || 12 || res-pois || 8 || 10 || || || || || || || mcha || || || || || || || || ||
|-
| 1252 || Jade || 1 || 25 || 18 || res-pois || 11 || 12 || || || || || || || mcha || || || || || || || || ||
|-
| 1253 || Emerald || || 35 || 27 || res-pois || 13 || 15 || || || || || || || mcha || || || || || || || || ||
|-
| 1254 || Beryl || 1 || 1 || 1 || res-pois || 3 || 5 || || || || || || || scha || || || || || || || || ||
|-
| 1255 || Viridian || 1 || 14 || 10 || res-pois || 6 || 7 || || || || || || || scha || || || || || || || || ||
|-
| 1256 || Jade || 1 || 27 || 20 || res-pois || 8 || 9 || || || || || || || scha || || || || || || || || ||
|-
| 1257 || Emerald || || 40 || 32 || res-pois || 10 || 11 || || || || || || || scha || || || || || || || || ||
|-
| 1258 || Beryl || 1 || 5 || 3 || res-pois || 5 || 10 || || || || || || || armo || weap || ring || amul || orb || circ || misl || || ||
|-
| 1259 || Viridian || 1 || 12 || 9 || res-pois || 11 || 20 || || || || || || || armo || ring || amul || orb || circ || misl || || || ||
|-
| 1260 || Viridian || 1 || 35 || 26 || res-pois || 11 || 20 || || || || || || || weap || || || || || || || orb || ||
|-
| 1261 || Jade || 1 || 18 || 13 || res-pois || 21 || 30 || || || || || || || armo || ring || amul || orb || circ || misl || || || ||
|-
| 1262 || Jade || 1 || 55 || 41 || res-pois || 21 || 30 || || || || || || || weap || || || || || || || orb || ||
|-
| 1263 || Emerald || 1 || 25 || 18 || res-pois || 31 || 40 || || || || || || || rod || boot || amul || orb || circ || || || || ||
|-
| 1264 || Beryl || 1 || 2 || 1 || res-pois || 5 || 15 || || || || || || || jewl || || || || || || || || ||
|-
| 1265 || Jade || 1 || 19 || 14 || res-pois || 16 || 30 || || || || || || || jewl || || || || || || || || ||
|-
| 1266 || Triumphant || 1 || 3 || 2 || mana-kill || 1 || 1 || || || || || || || weap || ring || circ || tors || helm || shld || misl || || ||
|-
| 1267 || Victorious || 1 || 17 || 12 || mana-kill || 2 || 5 || || || || || || || weap || circ || tors || helm || shld || misl || || || ||
|-
| 1268 || Aureolin || 1 || 22 || 16 || mana-kill || 1 || 3 || || || || || || || jewl || tors || helm || shld || misl || || || || ||
|-
| 1269 || Mechanist's || 1 || 10 || 7 || sock || 1 || 2 || || || || || || || weap || shld || helm || tors || circ || || || thro || ||
|-
| 1270 || Artificer's || || 33 || 25 || sock || || || || || || || || || weap || shld || helm || tors || || || || thro || ||
|-
| 1271 || Jeweler's || || 55 || 47 || sock || || || || || || || || || weap || shld || helm || tors || || || || thro || ||
|-
| 1272 || Assamic || 1 || 3 || 1 || att-demon || 25 || 50 || dmg-demon || 10 || 25 || || || || weap || circ || misl || || || || || wand || orb ||
|-
| 1273 || Arcadian || 1 || 15 || 11 || att-demon || 51 || 100 || dmg-demon || 26 || 50 || || || || weap || circ || helm || misl || || || || wand || orb ||
|-
| 1274 || Unearthly || 1 || 25 || 18 || att-demon || 101 || 150 || dmg-demon || 51 || 100 || || || || weap || || || || || || || wand || orb ||
|-
| 1275 || Astral || 1 || 35 || 26 || att-demon || 151 || 200 || dmg-demon || 101 || 150 || || || || weap || || || || || || || wand || orb ||
|-
| 1276 || Elysian || 1 || 45 || 33 || att-demon || 201 || 300 || dmg-demon || 151 || 200 || || || || weap || || || || || || || wand || orb ||
|-
| 1277 || Celestial || || 55 || 41 || att-demon || 301 || 400 || dmg-demon || 201 || 300 || || || || weap || || || || || || || wand || orb ||
|-
| 1278 || Diamond || 1 || 26 || 19 || att-demon || 25 || 50 || dmg-demon || 25 || 40 || || || || jewl || || || || || || || || ||
|-
| 1279 || Fletcher's || || 50 || 42 || skilltab || 1 || 1 || || || || || || || lcha || || || || || || || || ||
|-
| 1280 || Acrobat's || || 50 || 42 || skilltab || 1 || 1 || || || || || || || lcha || || || || || || || || ||
|-
| 1281 || Harpoonist's || || 50 || 42 || skilltab || 1 || 1 || || || || || || || lcha || || || || || || || || ||
|-
| 1282 || Fletcher's || 1 || 20 || 15 || skilltab || 1 || 1 || || || || || || || miss || glov || circ || misl || amul || || || || ||
|-
| 1283 || Bowyer's || 1 || 40 || 30 || skilltab || 2 || 2 || || || || || || || miss || glov || circ || misl || amul || || || || ||
|-
| 1284 || Archer's || || 60 || 45 || skilltab || 3 || 3 || || || || || || || miss || glov || circ || misl || amul || || || || ||
|-
| 1285 || Acrobat's || 1 || 20 || 15 || skilltab || 1 || 1 || || || || || || || glov || amul || circ || misl || || || || || ||
|-
| 1286 || Gymnast's || 1 || 40 || 30 || skilltab || 2 || 2 || || || || || || || glov || amul || circ || misl || || || || || ||
|-
| 1287 || Athlete's || || 60 || 45 || skilltab || 3 || 3 || || || || || || || glov || amul || circ || misl || || || || || ||
|-
| 1288 || Harpoonist's || 1 || 20 || 15 || skilltab || 1 || 1 || || || || || || || spea || glov || amul || circ || || || || || ||
|-
| 1289 || Spearmaiden's || 1 || 40 || 30 || skilltab || 2 || 2 || || || || || || || spea || glov || amul || circ || || || || || ||
|-
| 1290 || Lancer's || 1 || 60 || 45 || skilltab || 3 || 3 || || || || || || || spea || || || || || || || || ||
|-
| 1291 || Burning || 1 || 50 || 42 || skilltab || 1 || 1 || || || || || || || lcha || || || || || || || || ||
|-
| 1292 || Sparking || 1 || 50 || 42 || skilltab || 1 || 1 || || || || || || || lcha || || || || || || || || ||
|-
| 1293 || Chilling || 1 || 50 || 42 || skilltab || 1 || 1 || || || || || || || lcha || || || || || || || || ||
|-
| 1294 || Burning || 1 || 20 || 15 || skilltab || 1 || 1 || || || || || || || staf || orb || amul || circ || || || || || ||
|-
| 1295 || Blazing || 1 || 40 || 30 || skilltab || 2 || 2 || || || || || || || staf || orb || amul || circ || || || || || ||
|-
| 1296 || Volcanic || || 60 || 45 || skilltab || 3 || 3 || || || || || || || staf || orb || amul || circ || || || || || ||
|-
| 1297 || Sparking || 1 || 20 || 15 || skilltab || 1 || 1 || || || || || || || staf || orb || amul || circ || || || || || ||
|-
| 1298 || Charged || 1 || 40 || 30 || skilltab || 2 || 2 || || || || || || || staf || orb || amul || circ || || || || || ||
|-
| 1299 || Powered || || 60 || 45 || skilltab || 3 || 3 || || || || || || || staf || orb || amul || circ || || || || || ||
|-
| 1300 || Chilling || 1 || 20 || 15 || skilltab || 1 || 1 || || || || || || || staf || orb || amul || circ || || || || || ||
|-
| 1301 || Freezing || 1 || 40 || 30 || skilltab || 2 || 2 || || || || || || || staf || orb || amul || circ || || || || || ||
|-
| 1302 || Glacial || || 60 || 45 || skilltab || 3 || 3 || || || || || || || staf || orb || amul || circ || || || || || ||
|-
| 1303 || Hexing || 1 || 50 || 42 || skilltab || 1 || 1 || || || || || || || lcha || || || || || || || || ||
|-
| 1304 || Fungal || 1 || 50 || 42 || skilltab || 1 || 1 || || || || || || || lcha || || || || || || || || ||
|-
| 1305 || Graverobber's || 1 || 50 || 42 || skilltab || 1 || 1 || || || || || || || lcha || || || || || || || || ||
|-
| 1306 || Hexing || 1 || 20 || 15 || skilltab || 1 || 1 || || || || || || || wand || head || amul || circ || || || || || ||
|-
| 1307 || Blighting || 1 || 40 || 30 || skilltab || 2 || 2 || || || || || || || wand || head || amul || circ || || || || || ||
|-
| 1308 || Accursed || || 60 || 45 || skilltab || 3 || 3 || || || || || || || wand || head || amul || circ || || || || || ||
|-
| 1309 || Fungal || 1 || 20 || 15 || skilltab || 1 || 1 || || || || || || || wand || head || amul || knif || circ || || || tkni || ||
|-
| 1310 || Noxious || 1 || 40 || 30 || skilltab || 2 || 2 || || || || || || || wand || head || amul || knif || circ || || || tkni || ||
|-
| 1311 || Venomous || || 60 || 45 || skilltab || 3 || 3 || || || || || || || wand || head || amul || knif || circ || || || tkni || ||
|-
| 1312 || Graverobber's || 1 || 20 || 15 || skilltab || 1 || 1 || || || || || || || wand || head || amul || circ || || || || || ||
|-
| 1313 || Vodoun || 1 || 40 || 30 || skilltab || 2 || 2 || || || || || || || wand || head || amul || circ || || || || || ||
|-
| 1314 || Golemlord's || || 60 || 45 || skilltab || 3 || 3 || || || || || || || wand || head || amul || circ || || || || || ||
|-
| 1315 || Lion Branded || 1 || 50 || 42 || skilltab || 1 || 1 || || || || || || || lcha || || || || || || || || ||
|-
| 1316 || Captain's || 1 || 50 || 42 || skilltab || 1 || 1 || || || || || || || lcha || || || || || || || || ||
|-
| 1317 || Preserver's || 1 || 50 || 42 || skilltab || 1 || 1 || || || || || || || lcha || || || || || || || || ||
|-
| 1318 || Lion Branded || 1 || 20 || 15 || skilltab || 1 || 1 || || || || || || || scep || swor || mace || shld || ashd || amul || circ || || ||
|-
| 1319 || Hawk Branded || 1 || 40 || 30 || skilltab || 2 || 2 || || || || || || || scep || swor || mace || shld || ashd || amul || circ || || ||
|-
| 1320 || Rose Branded || || 60 || 45 || skilltab || 3 || 3 || || || || || || || scep || swor || mace || shld || ashd || amul || circ || || ||
|-
| 1321 || Captain's || 1 || 20 || 15 || skilltab || 1 || 1 || || || || || || || scep || swor || mace || shld || ashd || amul || circ || || ||
|-
| 1322 || Commander's || 1 || 40 || 30 || skilltab || 2 || 2 || || || || || || || scep || swor || mace || shld || ashd || amul || circ || || ||
|-
| 1323 || Marshal's || || 60 || 45 || skilltab || 3 || 3 || || || || || || || scep || swor || mace || shld || ashd || amul || circ || || ||
|-
| 1324 || Preserver's || 1 || 20 || 15 || skilltab || 1 || 1 || || || || || || || shld || ashd || amul || circ || || || || || ||
|-
| 1325 || Warder's || 1 || 40 || 30 || skilltab || 2 || 2 || || || || || || || shld || ashd || amul || circ || || || || || ||
|-
| 1326 || Guardian's || || 60 || 45 || skilltab || 3 || 3 || || || || || || || shld || ashd || amul || circ || || || || || ||
|-
| 1327 || Expert's || 1 || 50 || 42 || skilltab || 1 || 1 || || || || || || || lcha || || || || || || || || ||
|-
| 1328 || Fanatic || 1 || 50 || 42 || skilltab || 1 || 1 || || || || || || || lcha || || || || || || || || ||
|-
| 1329 || Sounding || 1 || 50 || 42 || skilltab || 1 || 1 || || || || || || || lcha || || || || || || || || ||
|-
| 1330 || Expert's || 1 || 20 || 15 || skilltab || 1 || 1 || || || || || || || phlm || weap || helm || || || || || miss || rod ||
|-
| 1331 || Veteran's || 1 || 40 || 30 || skilltab || 2 || 2 || || || || || || || phlm || weap || helm || || || || || miss || rod ||
|-
| 1332 || Master's || || 60 || 45 || skilltab || 3 || 3 || || || || || || || phlm || weap || helm || || || || || miss || rod ||
|-
| 1333 || Fanatic || 1 || 20 || 15 || skilltab || 1 || 1 || || || || || || || phlm || weap || amul || || || || || miss || rod ||
|-
| 1334 || Raging || 1 || 40 || 30 || skilltab || 2 || 2 || || || || || || || phlm || weap || amul || || || || || miss || rod ||
|-
| 1335 || Furious || || 60 || 45 || skilltab || 3 || 3 || || || || || || || phlm || weap || amul || || || || || miss || rod ||
|-
| 1336 || Sounding || 1 || 20 || 15 || skilltab || 1 || 1 || || || || || || || phlm || weap || amul || || || || || miss || rod ||
|-
| 1337 || Resonant || 1 || 40 || 30 || skilltab || 2 || 2 || || || || || || || phlm || weap || amul || || || || || miss || rod ||
|-
| 1338 || Echoing || || 60 || 45 || skilltab || 3 || 3 || || || || || || || phlm || weap || amul || || || || || miss || rod ||
|-
| 1339 || Trainer's || 1 || 50 || 42 || skilltab || 1 || 1 || || || || || || || lcha || || || || || || || || ||
|-
| 1340 || Spiritual || 1 || 50 || 42 || skilltab || 1 || 1 || || || || || || || lcha || || || || || || || || ||
|-
| 1341 || Nature's || 1 || 50 || 42 || skilltab || 1 || 1 || || || || || || || lcha || || || || || || || || ||
|-
| 1342 || Trainer's || 1 || 20 || 15 || skilltab || 1 || 1 || || || || || || || club || pelt || amul || circ || || || || || ||
|-
| 1343 || Caretaker's || 1 || 40 || 30 || skilltab || 2 || 2 || || || || || || || club || pelt || amul || circ || || || || || ||
|-
| 1344 || Keeper's || || 60 || 45 || skilltab || 3 || 3 || || || || || || || club || pelt || amul || circ || || || || || ||
|-
| 1345 || Spiritual || 1 || 20 || 15 || skilltab || 1 || 1 || || || || || || || club || pelt || amul || circ || || || || || ||
|-
| 1346 || Feral || 1 || 40 || 30 || skilltab || 2 || 2 || || || || || || || club || pelt || amul || circ || || || || || ||
|-
| 1347 || Communal || || 60 || 45 || skilltab || 3 || 3 || || || || || || || club || pelt || amul || circ || || || || || ||
|-
| 1348 || Nature's || 1 || 20 || 15 || skilltab || 1 || 1 || || || || || || || club || pelt || amul || circ || || || || || ||
|-
| 1349 || Terra's || 1 || 40 || 30 || skilltab || 2 || 2 || || || || || || || club || pelt || amul || circ || || || || || ||
|-
| 1350 || Gaea's || || 60 || 45 || skilltab || 3 || 3 || || || || || || || club || pelt || amul || circ || || || || || ||
|-
| 1351 || Entrapping || 1 || 50 || 42 || skilltab || 1 || 1 || || || || || || || lcha || || || || || || || || ||
|-
| 1352 || Mentalist's || 1 || 50 || 42 || skilltab || 1 || 1 || || || || || || || lcha || || || || || || || || ||
|-
| 1353 || Shogukusha's || 1 || 50 || 42 || skilltab || 1 || 1 || || || || || || || lcha || || || || || || || || ||
|-
| 1354 || Entrapping || 1 || 20 || 15 || skilltab || 1 || 1 || || || || || || || h2h || amul || circ || || || || || || ||
|-
| 1355 || Trickster's || 1 || 40 || 30 || skilltab || 2 || 2 || || || || || || || h2h || amul || circ || || || || || || ||
|-
| 1356 || Cunning || || 60 || 45 || skilltab || 3 || 3 || || || || || || || h2h || amul || circ || || || || || || ||
|-
| 1357 || Mentalist's || 1 || 20 || 15 || skilltab || 1 || 1 || || || || || || || h2h || amul || helm || circ || || || || || ||
|-
| 1358 || Psychic || 1 || 40 || 30 || skilltab || 2 || 2 || || || || || || || h2h || amul || helm || circ || || || || || ||
|-
| 1359 || Shadow || || 60 || 45 || skilltab || 3 || 3 || || || || || || || h2h || amul || helm || circ || || || || || ||
|-
| 1360 || Shogukusha's || 1 || 20 || 15 || skilltab || 1 || 1 || || || || || || || h2h || amul || glov || circ || || || || || ||
|-
| 1361 || Sensei's || 1 || 40 || 30 || skilltab || 2 || 2 || || || || || || || h2h || amul || glov || circ || || || || || ||
|-
| 1362 || Kenshi's || || 60 || 45 || skilltab || 3 || 3 || || || || || || || h2h || amul || glov || circ || || || || || ||
|-
| || || || || || || || || || || || || || || || || || || || || || || ||
|-
| 1369 || Paleocene || 1 || 30 || 22 || ac/lvl || || || || || || || || || tors || || || || || || || || ||
|-
| 1370 || Paleocene || 1 || 30 || 22 || ac/lvl || || || || || || || || || glov || boot || belt || shld || || || || || ||
|-
| || || || || || || || || || || || || || || || || || || || || || || ||
|-
| 1375 || Trump || 1 || 50 || 37 || dmg/lvl || || || att/lvl || || || || || || weap || || || || || || || staf || wand || orb
|-
| || || || || || || || || || || || || || || || || || || || || || || ||
|-
| 1380 || Gritty || 1 || 50 || 37 || dmg/lvl || || || || || || || || || weap || || || || || || || staf || wand || orb
|-
| || || || || || || || || || || || || || || || || || || || || || || ||
|-
| 1386 || Hawkeye || || 35 || 26 || att/lvl || || || || || || || || || weap || || || || || || || staf || wand || orb
|-
| || || || || || || || || || || || || || || || || || || || || || || ||
|-
| 1388 || Visionary || 1 || 25 || 18 || att%/lvl || || || || || || || || || helm || miss || || || || || || || ||
|-
| 1389 || Mnemonic || 1 || 25 || 18 || mana/lvl || || || || || || || || || helm || || || || || || || || ||
|-
| 1390 || Snowflake || 1 || 25 || 18 || cold-len || 25 || 25 || cold-min || 6 || 9 || cold-max || 19 || 30 || weap || circ || misl || || || || || || ||
|-
| 1391 || Shivering || 1 || 35 || 26 || cold-len || 50 || 50 || cold-min || 10 || 15 || cold-max || 31 || 45 || weap || misl || || || || || || || ||
|-
| 1392 || Boreal || 1 || 50 || 40 || cold-len || 75 || 75 || cold-min || 16 || 23 || cold-max || 46 || 90 || weap || misl || || || || || || || ||
|-
| 1393 || Hibernal || 1 || 70 || 60 || cold-len || 100 || 100 || cold-min || 24 || 45 || cold-max || 91 || 140 || weap || misl || || || || || || || ||
|-
| 1394 || Ember || 1 || 25 || 18 || fire-min || 16 || 25 || fire-max || 31 || 60 || || || || weap || circ || misl || || || || || || ||
|-
| 1395 || Smoldering || 1 || 35 || 26 || fire-min || 26 || 50 || fire-max || 61 || 90 || || || || weap || misl || || || || || || || ||
|-
| 1396 || Smoking || 1 || 47 || 37 || fire-min || 51 || 80 || fire-max || 91 || 130 || || || || weap || misl || || || || || || || ||
|-
| 1397 || Flaming || 1 || 61 || 51 || fire-min || 81 || 120 || fire-max || 131 || 180 || || || || weap || misl || || || || || || || ||
|-
| 1398 || Scorching || 1 || 77 || 67 || fire-min || 121 || 170 || fire-max || 181 || 240 || || || || weap || misl || || || || || || || ||
|-
| 1399 || Static || 1 || 25 || 18 || ltng-min || 1 || 1 || ltng-max || 49 || 120 || || || || weap || circ || misl || || || || || || ||
|-
| 1400 || Glowing || 1 || 34 || 25 || ltng-min || 1 || 1 || ltng-max || 121 || 180 || || || || weap || misl || || || || || || || ||
|-
| 1401 || Buzzing || 1 || 46 || 36 || ltng-min || 1 || 1 || ltng-max || 181 || 260 || || || || weap || misl || || || || || || || ||
|-
| 1402 || Arcing || 1 || 60 || 50 || ltng-min || 1 || 1 || ltng-max || 261 || 360 || || || || weap || misl || || || || || || || ||
|-
| 1403 || Shocking || 1 || 76 || 66 || ltng-min || 1 || 1 || ltng-max || 361 || 480 || || || || weap || misl || || || || || || || ||
|-
| 1404 || Septic || 1 || 1 || 1 || dmg-pois || 31 || 31 || || || || || || || weap || circ || misl || || || || || || ||
|-
| 1405 || Envenomed || 1 || 10 || 7 || dmg-pois || 41 || 41 || || || || || || || weap || misl || || || || || || || ||
|-
| 1406 || Corosive || 1 || 20 || 15 || dmg-pois || 205 || 205 || || || || || || || weap || misl || || || || || || || ||
|-
| 1407 || Toxic || 1 || 35 || 26 || dmg-pois || 308 || 308 || || || || || || || weap || misl || || || || || || || ||
|-
| 1408 || Pestilent || 1 || 50 || 37 || dmg-pois || 470 || 470 || || || || || || || weap || misl || || || || || || || ||
|-
| 1409 || Maiden's || 1 || 36 || 27 || ama || 1 || 1 || || || || || || || amul || circ || || || || || || || ||
|-
| 1410 || Valkyrie's || 1 || 90 || 67 || ama || 2 || 2 || || || || || || || amul || circ || || || || || || || ||
|-
| 1411 || Maiden's || 1 || 30 || 22 || ama || 1 || 1 || || || || || || || miss || spea || || || || || || || ||
|-
| 1412 || Valkyrie's || 1 || 50 || 42 || ama || 2 || 2 || || || || || || || miss || spea || || || || || || || ||
|-
| 1413 || Monk's || 1 || 36 || 27 || pal || 1 || 1 || || || || || || || amul || circ || || || || || || || ||
|-
| 1414 || Priest's || 1 || 90 || 67 || pal || 2 || 2 || || || || || || || amul || circ || || || || || || || ||
|-
| 1415 || Monk's || 1 || 30 || 22 || pal || 1 || 1 || || || || || || || scep || ashd || || || || || || || ||
|-
| 1416 || Priest's || 1 || 50 || 42 || pal || 2 || 2 || || || || || || || scep || ashd || || || || || || || ||
|-
| 1417 || Monk's || 1 || 35 || 27 || pal || 1 || 1 || || || || || || || swor || mace || hamm || shld || || || || || ||
|-
| 1418 || Priest's || 1 || 65 || 58 || pal || 2 || 2 || || || || || || || swor || mace || hamm || shld || || || || || ||
|-
| 1419 || Summoner's || 1 || 36 || 27 || nec || 1 || 1 || || || || || || || amul || circ || || || || || || || ||
|-
| 1420 || Necromancer's || 1 || 90 || 67 || nec || 2 || 2 || || || || || || || amul || circ || || || || || || || ||
|-
| 1421 || Summoner's || 1 || 30 || 22 || nec || 1 || 1 || || || || || || || wand || knif || head || || || || || || ||
|-
| 1422 || Necromancer's || 1 || 50 || 42 || nec || 2 || 2 || || || || || || || wand || knif || head || || || || || || ||
|-
| 1423 || Angel's || 1 || 36 || 27 || sor || 1 || 1 || || || || || || || amul || circ || || || || || || || ||
|-
| 1424 || Arch-Angel's || 1 || 90 || 67 || sor || 2 || 2 || || || || || || || amul || circ || || || || || || || ||
|-
| 1425 || Angel's || 1 || 30 || 22 || sor || 1 || 1 || || || || || || || staf || orb || || || || || || || ||
|-
| 1426 || Arch-Angel's || 1 || 50 || 42 || sor || 2 || 2 || || || || || || || staf || orb || || || || || || || ||
|-
| 1427 || Slayer's || 1 || 36 || 27 || bar || 1 || 1 || || || || || || || amul || circ || || || || || || || ||
|-
| 1428 || Berserker's || 1 || 90 || 67 || bar || 2 || 2 || || || || || || || amul || circ || || || || || || || ||
|-
| 1429 || Slayer's || 1 || 30 || 22 || bar || 1 || 1 || || || || || || || tkni || axe || spea || club || swor || hamm || mace || jave || ||
|-
| 1430 || Berserker's || 1 || 50 || 42 || bar || 2 || 2 || || || || || || || tkni || axe || spea || club || swor || hamm || mace || jave || ||
|-
| 1431 || Slayer's || 1 || 30 || 22 || bar || 1 || 1 || || || || || || || phlm || || || || || || || || ||
|-
| 1432 || Berserker's || 1 || 50 || 42 || bar || 2 || 2 || || || || || || || phlm || || || || || || || || ||
|-
| 1433 || Shaman's || 1 || 36 || 27 || dru || 1 || 1 || || || || || || || amul || circ || || || || || || || ||
|-
| 1434 || Hierophant's || 1 || 90 || 67 || dru || 2 || 2 || || || || || || || amul || circ || || || || || || || ||
|-
| 1435 || Shaman's || 1 || 30 || 22 || dru || 1 || 1 || || || || || || || club || pelt || || || || || || || ||
|-
| 1436 || Hierophant's || 1 || 50 || 42 || dru || 2 || 2 || || || || || || || club || pelt || || || || || || || ||
|-
| 1437 || Magekiller's || 1 || 36 || 27 || ass || 1 || 1 || || || || || || || amul || circ || || || || || || || ||
|-
| 1438 || Witch-hunter's || 1 || 90 || 67 || ass || 2 || 2 || || || || || || || amul || circ || || || || || || || ||
|-
| 1439 || Magekiller's || 1 || 30 || 22 || ass || 1 || 1 || || || || || || || h2h || || || || || || || || ||
|-
| 1440 || Witch-hunter's || 1 || 50 || 42 || ass || 2 || 2 || || || || || || || h2h || || || || || || || || ||
|-
| || || || || || || || || || || || || || || || || || || || || || || ||
|-
| 1444 || Consecrated || 1 || 1 || 1 || att-undead || 25 || 75 || dmg-undead || 25 || 75 || || || || weap || || || || || || || wand || orb ||
|-
| 1445 || Pure || 1 || 15 || 11 || att-undead || 76 || 175 || dmg-undead || 76 || 125 || || || || weap || || || || || || || wand || orb ||
|-
| 1446 || Sacred || 1 || 25 || 18 || att-undead || 175 || 250 || dmg-undead || 126 || 200 || || || || weap || || || || || || || wand || orb ||
|-
| 1447 || Hallowed || 1 || 35 || 27 || att-undead || 251 || 325 || dmg-undead || 201 || 275 || || || || weap || || || || || || || wand || orb ||
|-
| 1448 || Divine || || 45 || 37 || att-undead || 326 || 450 || dmg-undead || 276 || 350 || || || || weap || || || || || || || wand || orb ||
|-
| 1449 || Pearl || 1 || 18 || 13 || att-undead || 25 || 50 || dmg-undead || 25 || 50 || || || || jewl || || || || || || || || ||
|-
| 1450 || Crimson || 1 || 5 || 3 || res-fire || 5 || 10 || || || || || || || armo || ring || amul || orb || circ || weap || misl || || ||
|-
| 1451 || Red || 1 || 15 || 11 || dmg-min || 1 || 1 || || || || || || || lcha || || || || || || || || ||
|-
| 1452 || Sanguinary || 1 || 45 || 37 || dmg-min || 2 || 2 || || || || || || || lcha || || || || || || || || ||
|-
| 1453 || Bloody || || 75 || 67 || dmg-min || 3 || 3 || || || || || || || lcha || || || || || || || || ||
|-
| 1454 || Red || 1 || 30 || 22 || dmg-min || 1 || 1 || || || || || || || mcha || || || || || || || || ||
|-
| 1455 || Sanguinary || || 60 || 52 || dmg-min || 2 || 2 || || || || || || || mcha || || || || || || || || ||
|-
| 1456 || Red || 1 || 90 || 82 || dmg-min || 1 || 1 || || || || || || || scha || || || || || || || || ||
|-
| 1457 || Jagged || 1 || 7 || 5 || dmg-max || 1 || 1 || || || || || || || lcha || || || || || || || || ||
|-
| 1458 || Forked || 1 || 37 || 29 || dmg-max || 2 || 2 || || || || || || || lcha || || || || || || || || ||
|-
| 1459 || Serrated || || 67 || 59 || dmg-max || 3 || 3 || || || || || || || lcha || || || || || || || || ||
|-
| 1460 || Jagged || 1 || 22 || 16 || dmg-max || 1 || 1 || || || || || || || mcha || || || || || || || || ||
|-
| 1461 || Forked || || 52 || 44 || dmg-max || 2 || 2 || || || || || || || mcha || || || || || || || || ||
|-
| 1462 || Jagged || 1 || 81 || 73 || dmg-max || 1 || 1 || || || || || || || scha || || || || || || || || ||
|-
| 1463 || Snowflake || 1 || 9 || 6 || cold-len || 25 || 25 || cold-min || 1 || 1 || cold-max || 2 || 3 || lcha || || || || || || || || ||
|-
| 1464 || Shivering || 1 || 15 || 11 || cold-len || 25 || 25 || cold-min || 2 || 4 || cold-max || 4 || 8 || lcha || || || || || || || || ||
|-
| 1465 || Boreal || 1 || 30 || 22 || cold-len || 25 || 25 || cold-min || 5 || 7 || cold-max || 9 || 15 || lcha || || || || || || || || ||
|-
| 1466 || Hibernal || || 45 || 38 || cold-len || 25 || 25 || cold-min || 8 || 13 || cold-max || 16 || 25 || lcha || || || || || || || || ||
|-
| 1467 || Snowflake || 1 || 18 || 13 || cold-len || 25 || 25 || cold-min || 2 || 3 || cold-max || 3 || 5 || mcha || || || || || || || || ||
|-
| 1468 || Shivering || 1 || 29 || 21 || cold-len || 25 || 25 || cold-min || 4 || 5 || cold-max || 6 || 10 || mcha || || || || || || || || ||
|-
| 1469 || Boreal || 1 || 49 || 41 || cold-len || 25 || 25 || cold-min || 6 || 10 || cold-max || 11 || 20 || mcha || || || || || || || || ||
|-
| 1470 || Hibernal || || 69 || 61 || cold-len || 25 || 25 || cold-min || 11 || 15 || cold-max || 21 || 30 || mcha || || || || || || || || ||
|-
| 1471 || Snowflake || 1 || 27 || 20 || cold-len || 25 || 25 || cold-min || 1 || 2 || cold-max || 2 || 4 || scha || || || || || || || || ||
|-
| 1472 || Shivering || 1 || 42 || 34 || cold-len || 25 || 25 || cold-min || 3 || 4 || cold-max || 5 || 8 || scha || || || || || || || || ||
|-
| 1473 || Boreal || 1 || 66 || 58 || cold-len || 25 || 25 || cold-min || 5 || 7 || cold-max || 9 || 14 || scha || || || || || || || || ||
|-
| 1474 || Hibernal || || 91 || 83 || cold-len || 25 || 25 || cold-min || 8 || 10 || cold-max || 15 || 20 || scha || || || || || || || || ||
|-
| 1475 || Ember || 1 || 5 || 3 || fire-min || 1 || 1 || fire-max || 2 || 3 || || || || lcha || || || || || || || || ||
|-
| 1476 || Smoldering || 1 || 15 || 11 || fire-min || 2 || 3 || fire-max || 4 || 7 || || || || lcha || || || || || || || || ||
|-
| 1477 || Smoking || 1 || 28 || 21 || fire-min || 4 || 7 || fire-max || 8 || 19 || || || || lcha || || || || || || || || ||
|-
| 1478 || Flaming || || 43 || 35 || fire-min || 8 || 18 || fire-max || 20 || 36 || || || || lcha || || || || || || || || ||
|-
| 1479 || Ember || 1 || 13 || 9 || fire-min || 1 || 1 || fire-max || 2 || 3 || || || || mcha || || || || || || || || ||
|-
| 1480 || Smoldering || 1 || 27 || 20 || fire-min || 2 || 3 || fire-max || 4 || 12 || || || || mcha || || || || || || || || ||
|-
| 1481 || Smoking || 1 || 47 || 39 || fire-min || 4 || 9 || fire-max || 13 || 27 || || || || mcha || || || || || || || || ||
|-
| 1482 || Flaming || || 67 || 59 || fire-min || 10 || 27 || fire-max || 28 || 43 || || || || mcha || || || || || || || || ||
|-
| 1483 || Ember || 1 || 21 || 15 || fire-min || 1 || 1 || fire-max || 2 || 3 || || || || scha || || || || || || || || ||
|-
| 1484 || Smoldering || 1 || 40 || 32 || fire-min || 2 || 3 || fire-max || 4 || 10 || || || || scha || || || || || || || || ||
|-
| 1485 || Smoking || 1 || 64 || 56 || fire-min || 4 || 9 || fire-max || 11 || 19 || || || || scha || || || || || || || || ||
|-
| 1486 || Flaming || || 89 || 81 || fire-min || 10 || 19 || fire-max || 20 || 29 || || || || scha || || || || || || || || ||
|-
| 1487 || Static || 1 || 7 || 5 || ltng-min || 1 || 1 || ltng-max || 4 || 5 || || || || lcha || || || || || || || || ||
|-
| 1488 || Glowing || 1 || 14 || 10 || ltng-min || 1 || 1 || ltng-max || 6 || 17 || || || || lcha || || || || || || || || ||
|-
| 1489 || Arcing || 1 || 29 || 21 || ltng-min || 1 || 1 || ltng-max || 18 || 44 || || || || lcha || || || || || || || || ||
|-
| 1490 || Shocking || || 44 || 36 || ltng-min || 1 || 1 || ltng-max || 45 || 79 || || || || lcha || || || || || || || || ||
|-
| 1491 || Static || 1 || 14 || 10 || ltng-min || 1 || 1 || ltng-max || 5 || 9 || || || || mcha || || || || || || || || ||
|-
| 1492 || Glowing || 1 || 28 || 20 || ltng-min || 1 || 1 || ltng-max || 10 || 26 || || || || mcha || || || || || || || || ||
|-
| 1493 || Arcing || 1 || 48 || 40 || ltng-min || 1 || 1 || ltng-max || 27 || 58 || || || || mcha || || || || || || || || ||
|-
| 1494 || Shocking || || 68 || 60 || ltng-min || 1 || 1 || ltng-max || 59 || 90 || || || || mcha || || || || || || || || ||
|-
| 1495 || Static || 1 || 23 || 17 || ltng-min || 1 || 1 || ltng-max || 6 || 11 || || || || scha || || || || || || || || ||
|-
| 1496 || Glowing || 1 || 41 || 33 || ltng-min || 1 || 1 || ltng-max || 12 || 24 || || || || scha || || || || || || || || ||
|-
| 1497 || Arcing || 1 || 65 || 57 || ltng-min || 1 || 1 || ltng-max || 25 || 43 || || || || scha || || || || || || || || ||
|-
| 1498 || Shocking || || 90 || 82 || ltng-min || 1 || 1 || ltng-max || 44 || 71 || || || || scha || || || || || || || || ||
|-
| 1499 || Septic || 1 || 1 || 1 || dmg-pois || 18 || 18 || || || || || || || lcha || || || || || || || || ||
|-
| 1500 || Envenomed || 1 || 12 || 9 || dmg-pois || 39 || 39 || || || || || || || lcha || || || || || || || || ||
|-
| 1501 || Toxic || 1 || 27 || 20 || dmg-pois || 103 || 103 || || || || || || || lcha || || || || || || || || ||
|-
| 1502 || Pestilent || || 42 || 34 || dmg-pois || 171 || 171 || || || || || || || lcha || || || || || || || || ||
|-
| 1503 || Septic || 1 || 9 || 6 || dmg-pois || 35 || 35 || || || || || || || mcha || || || || || || || || ||
|-
| 1504 || Envenomed || 1 || 26 || 19 || dmg-pois || 77 || 77 || || || || || || || mcha || || || || || || || || ||
|-
| 1505 || Toxic || 1 || 46 || 38 || dmg-pois || 185 || 185 || || || || || || || mcha || || || || || || || || ||
|-
| 1506 || Pestilent || || 66 || 58 || dmg-pois || 299 || 299 || || || || || || || mcha || || || || || || || || ||
|-
| 1507 || Septic || 1 || 18 || 13 || dmg-pois || 52 || 52 || || || || || || || scha || || || || || || || || ||
|-
| 1508 || Envenomed || 1 || 39 || 31 || dmg-pois || 128 || 128 || || || || || || || scha || || || || || || || || ||
|-
| 1509 || Toxic || 1 || 63 || 55 || dmg-pois || 205 || 205 || || || || || || || scha || || || || || || || || ||
|-
| 1510 || Pestilent || || 88 || 80 || dmg-pois || 299 || 299 || || || || || || || scha || || || || || || || || ||
|-
| 1511 || Tireless || 1 || 1-5 || 1 || regen-stam || 10 || 10 || || || || || || || boot || || || || || || || || ||
|-
| 1512 || Lizard's || 1 || 1-2 || 1 || mana || 1 || 2 || || || || || || || armo || ring || amul || rod || orb || || || boot || glov ||
|-
| 1513 || Azure || 1 || 1-4 || 1 || res-cold || 5 || 5 || || || || || || || armo || ring || amul || orb || circ || || || || ||
|-
| 1514 || Crimson || 1 || 1-4 || 1 || res-fire || 5 || 5 || || || || || || || armo || ring || amul || orb || circ || || || || ||
|-
| 1515 || Tangerine || 1 || 1-4 || 1 || res-ltng || 5 || 5 || || || || || || || armo || ring || amul || orb || circ || || || || ||
|-
| 1516 || Beryl || 1 || 1-4 || 1 || res-pois || 5 || 5 || || || || || || || armo || ring || amul || orb || circ || || || || ||
|-
| 1517 || Godly || 1 || 50 || 43 || ac% || 101 || 200 || || || || || || || armo || || || || || || || || ||
|-
| 1518 || Cruel || 1 || 56 || 48 || dmg% || 201 || 300 || || || || || || || weap || || || || || || || staf || wand || orb
|-
| || || || || || || || || || || || || || || || || || || || || || || ||
|-
| 1520 || Champion's || 1 || 1 || 1 || map-glob-monsterrarity || 30 || 60 || || || || || || || t1m || t2m || t3m || t4m || || || || || ||
|-
| 1521 || Flaming || 1 || 1 || 1 || map-mon-extra-fire || 5 || 10 || map-glob-density || 25 || 35 || map-play-addxp || 3 || 4 || t1m || t2m || t3m || t4m || || || || || ||
|-
| 1522 || Ember || 1 || 1 || 1 || map-mon-extra-fire || 10 || 15 || map-glob-density || 35 || 45 || map-play-addxp || 4 || 5 || t2m || t3m || t4m || || || || || || ||
|-
| 1523 || Smoldering || 1 || 1 || 1 || map-mon-extra-fire || 15 || 20 || map-glob-density || 45 || 50 || map-play-addxp || 5 || 6 || t3m || t4m || || || || || || || ||
|-
| 1524 || Hibernal || 1 || 1 || 1 || map-mon-extra-cold || 5 || 10 || map-glob-density || 25 || 30 || map-play-mag-gold% || 15 || 20 || t1m || t2m || t3m || t4m || || || || || ||
|-
| 1525 || Snowflake || 1 || 1 || 1 || map-mon-extra-cold || 10 || 15 || map-glob-density || 30 || 35 || map-play-mag-gold% || 20 || 25 || t2m || t3m || t4m || || || || || || ||
|-
| 1526 || Shivering || 1 || 1 || 1 || map-mon-extra-cold || 15 || 20 || map-glob-density || 35 || 40 || map-play-mag-gold% || 25 || 30 || t3m || t4m || || || || || || || ||
|-
| 1527 || Static || 1 || 1 || 1 || map-mon-extra-ltng || 5 || 10 || map-glob-density || 25 || 40 || map-play-addxp || 3 || 4 || t1m || t2m || t3m || t4m || || || || || ||
|-
| 1528 || Glowing || 1 || 1 || 1 || map-mon-extra-ltng || 10 || 15 || map-glob-density || 35 || 45 || map-play-addxp || 4 || 5 || t2m || t3m || t4m || || || || || || ||
|-
| 1529 || Arcing || 1 || 1 || 1 || map-mon-extra-ltng || 15 || 20 || map-glob-density || 45 || 50 || map-play-addxp || 5 || 6 || t3m || t4m || || || || || || || ||
|-
| 1530 || Toxic || 1 || 1 || 1 || map-mon-extra-pois || 5 || 10 || map-glob-density || 30 || 40 || map-play-mag-gold% || 5 || 10 || t1m || t2m || t3m || t4m || || || || || ||
|-
| 1531 || Pestilent || 1 || 1 || 1 || map-mon-extra-pois || 10 || 15 || map-glob-density || 40 || 50 || map-play-mag-gold% || 10 || 15 || t2m || t3m || t4m || || || || || || ||
|-
| 1532 || Septic || 1 || 1 || 1 || map-mon-extra-pois || 15 || 20 || map-glob-density || 50 || 60 || map-play-mag-gold% || 15 || 20 || t3m || t4m || || || || || || || ||
|-
| 1533 || Magic || 1 || 1 || 1 || map-mon-extra-mag || 5 || 10 || map-glob-density || 25 || 35 || map-play-mag-gold% || 10 || 15 || || || || || || || || || ||
|-
| 1534 || Arcane || 1 || 1 || 1 || map-mon-extra-mag || 10 || 15 || map-glob-density || 35 || 45 || map-play-mag-gold% || 15 || 20 || || || || || || || || || ||
|-
| 1535 || Ancient || 1 || 1 || 1 || map-mon-extra-mag || 15 || 20 || map-glob-density || 45 || 50 || map-play-mag-gold% || 20 || 25 || || || || || || || || || ||
|-
| 1536 || Promoted || 1 || 1 || 1 || map-glob-arealevel || 1 || 1 || map-play-addxp || 3 || 4 || map-play-mag-gold% || 15 || 20 || || || || || || || || || ||
|-
| 1537 || Elevated || 1 || 1 || 1 || map-glob-arealevel || 1 || 1 || map-play-addxp || 4 || 5 || map-play-mag-gold% || 20 || 25 || || || || || || || || || ||
|-
| 1538 || Ascended || 1 || 1 || 1 || map-glob-arealevel || 1 || 1 || map-play-addxp || 5 || 6 || map-play-mag-gold% || 30 || 35 || || || || || || || || || ||
|-
| 1539 || Silver || 1 || 1 || 1 || map-mon-att-pierce || 10 || 20 || map-glob-density || 15 || 20 || map-play-mag-gold% || 15 || 20 || t1m || t2m || t3m || t4m || || || || || ||
|-
| 1540 || Shining || 1 || 1 || 1 || map-mon-att-pierce || 20 || 30 || map-glob-density || 30 || 35 || map-play-mag-gold% || 25 || 30 || t2m || t3m || t4m || || || || || || ||
|-
| 1541 || Opulent || 1 || 1 || 1 || map-mon-att-pierce || 30 || 40 || map-glob-density || 35 || 40 || map-play-mag-gold% || 35 || 40 || t3m || t4m || || || || || || || ||
|-
| 1542 || Fast || 1 || 1 || 1 || map-mon-att-cast-speed || 40 || 60 || map-glob-density || 30 || 40 || map-play-addxp || 3 || 4 || t1m || t2m || t3m || t4m || || || || || ||
|-
| 1543 || Speedy || 1 || 1 || 1 || map-mon-att-cast-speed || 60 || 80 || map-glob-density || 40 || 50 || map-play-addxp || 4 || 5 || t2m || t3m || t4m || || || || || || ||
|-
| 1544 || Ludicrous || 1 || 1 || 1 || map-mon-att-cast-speed || 80 || 100 || map-glob-density || 50 || 60 || map-play-addxp || 5 || 6 || t3m || t4m || || || || || || || ||
|-
| 1545 || Large || 1 || 1 || 1 || map-mon-hp% || 10 || 20 || map-glob-density || 30 || 40 || map-play-addxp || 5 || 6 || t1m || t2m || t3m || t4m || || || || || ||
|-
| 1546 || Huge || 1 || 1 || 1 || map-mon-hp% || 20 || 30 || map-glob-density || 40 || 50 || map-play-addxp || 6 || 7 || t2m || t3m || t4m || || || || || || ||
|-
| 1547 || Colossal || 1 || 1 || 1 || map-mon-hp% || 30 || 40 || map-glob-density || 50 || 60 || map-play-addxp || 7 || 8 || t3m || t4m || || || || || || || ||
|-
| 1548 || Strong || 1 || 1 || 1 || map-mon-ed% || 10 || 15 || map-play-addxp || 4 || 5 || map-play-mag-gold% || 10 || 15 || t1m || t2m || t3m || t4m || || || || || ||
|-
| 1549 || Mighty || 1 || 1 || 1 || map-mon-ed% || 15 || 20 || map-play-addxp || 5 || 6 || map-play-mag-gold% || 20 || 25 || t2m || t3m || t4m || || || || || || ||
|-
| 1550 || Formidable || 1 || 1 || 1 || map-mon-ed% || 20 || 25 || map-play-addxp || 6 || 7 || map-play-mag-gold% || 30 || 35 || t3m || t4m || || || || || || || ||
|-
| 1551 || Splashing || 1 || 1 || 1 || map-mon-splash || 100 || 1 || map-glob-density || 15 || 25 || map-play-mag-gold% || 5 || 10 || t1m || t2m || t3m || t4m || || || || || ||
|-
| 1552 || Splashing || 1 || 1 || 1 || map-mon-splash || 100 || 1 || map-glob-density || 35 || 45 || map-play-mag-gold% || 15 || 20 || t2m || t3m || t4m || || || || || || ||
|-
| 1553 || Splashing || 1 || 1 || 1 || map-mon-splash || 100 || 1 || map-glob-density || 45 || 50 || map-play-mag-gold% || 25 || 30 || t3m || t4m || || || || || || || ||
|-
| 1554 || Bloody || 1 || 1 || 1 || map-mon-openwounds || 5 || 10 || map-play-addxp || 4 || 5 || map-play-mag-gold% || 5 || 10 || t1m || t2m || t3m || t4m || || || || || ||
|-
| 1555 || Gory || 1 || 1 || 1 || map-mon-openwounds || 10 || 15 || map-play-addxp || 5 || 6 || map-play-mag-gold% || 15 || 20 || t2m || t3m || t4m || || || || || || ||
|-
| 1556 || Sanguinary || 1 || 1 || 1 || map-mon-openwounds || 15 || 20 || map-play-addxp || 6 || 7 || map-play-mag-gold% || 25 || 30 || t3m || t4m || || || || || || || ||
|-
| 1557 || Unhealthy || 1 || 1 || 1 || map-play-regen || -40 || -30 || map-play-addxp || 3 || 4 || map-play-mag-gold% || 5 || 10 || t1m || t2m || t3m || t4m || || || || || ||
|-
| 1558 || Sickly || 1 || 1 || 1 || map-play-regen || -60 || -50 || map-play-addxp || 4 || 5 || map-play-mag-gold% || 15 || 20 || t2m || t3m || t4m || || || || || || ||
|-
| 1559 || Diseased || 1 || 1 || 1 || map-play-regen || -80 || -70 || map-play-addxp || 5 || 6 || map-play-mag-gold% || 25 || 30 || t3m || t4m || || || || || || || ||
|-
| 1560 || Crushing || 1 || 1 || 1 || map-mon-crush || 15 || 25 || map-glob-density || 15 || 20 || map-play-mag-gold% || 5 || 10 || t1m || t2m || t3m || t4m || || || || || ||
|-
| 1561 || Smashing || 1 || 1 || 1 || map-mon-crush || 25 || 35 || map-glob-density || 30 || 35 || map-play-mag-gold% || 15 || 20 || t2m || t3m || t4m || || || || || || ||
|-
| 1562 || Obliterating || 1 || 1 || 1 || map-mon-crush || 35 || 45 || map-glob-density || 35 || 40 || map-play-mag-gold% || 25 || 30 || t3m || t4m || || || || || || || ||
|-
| 1563 || Sparking || 1 || 1 || 1 || map-mon-phys-as-extra-ltng || 60 || 80 || map-glob-density || 25 || 30 || map-play-mag-gold% || 5 || 10 || t1m || t2m || t3m || t4m || || || || || ||
|-
| 1564 || Shocking || 1 || 1 || 1 || map-mon-phys-as-extra-ltng || 70 || 90 || map-glob-density || 30 || 35 || map-play-mag-gold% || 15 || 20 || t2m || t3m || t4m || || || || || || ||
|-
| 1565 || Thunderous || 1 || 1 || 1 || map-mon-phys-as-extra-ltng || 80 || 100 || map-glob-density || 35 || 40 || map-play-mag-gold% || 25 || 30 || t3m || t4m || || || || || || || ||
|-
| 1566 || Chilling || 1 || 1 || 1 || map-mon-phys-as-extra-cold || 60 || 80 || map-glob-density || 25 || 30 || map-play-mag-gold% || 5 || 10 || t1m || t2m || t3m || t4m || || || || || ||
|-
| 1567 || Boreal || 1 || 1 || 1 || map-mon-phys-as-extra-cold || 70 || 90 || map-glob-density || 30 || 35 || map-play-mag-gold% || 15 || 20 || t2m || t3m || t4m || || || || || || ||
|-
| 1568 || Glacial || 1 || 1 || 1 || map-mon-phys-as-extra-cold || 80 || 100 || map-glob-density || 35 || 40 || map-play-mag-gold% || 25 || 30 || t3m || t4m || || || || || || || ||
|-
| 1569 || Smoking || 1 || 1 || 1 || map-mon-phys-as-extra-fire || 60 || 80 || map-glob-density || 25 || 30 || map-play-mag-gold% || 5 || 10 || t1m || t2m || t3m || t4m || || || || || ||
|-
| 1570 || Molten || 1 || 1 || 1 || map-mon-phys-as-extra-fire || 70 || 90 || map-glob-density || 30 || 35 || map-play-mag-gold% || 15 || 20 || t2m || t3m || t4m || || || || || || ||
|-
| 1571 || Volcanic || 1 || 1 || 1 || map-mon-phys-as-extra-fire || 80 || 100 || map-glob-density || 35 || 40 || map-play-mag-gold% || 25 || 30 || t3m || t4m || || || || || || || ||
|-
| 1572 || Poisonous || 1 || 1 || 1 || map-mon-phys-as-extra-pois || 123 || 163 || map-glob-density || 25 || 30 || map-play-mag-gold% || 5 || 10 || t1m || t2m || t3m || t4m || || || || || ||
|-
| 1573 || Envenomed || 1 || 1 || 1 || map-mon-phys-as-extra-pois || 143 || 184 || map-glob-density || 30 || 35 || map-play-mag-gold% || 15 || 20 || t2m || t3m || t4m || || || || || || ||
|-
| 1574 || Plagued || 1 || 1 || 1 || map-mon-phys-as-extra-pois || 163 || 205 || map-glob-density || 35 || 40 || map-play-mag-gold% || 25 || 30 || t3m || t4m || || || || || || || ||
|-
| 1575 || Runic || 1 || 1 || 1 || map-mon-phys-as-extra-mag || 8 || 10 || map-glob-density || 25 || 30 || map-play-mag-gold% || 5 || 10 || t1m || t2m || t3m || t4m || || || || || ||
|-
| 1576 || Taboo || 1 || 1 || 1 || map-mon-phys-as-extra-mag || 10 || 12 || map-glob-density || 30 || 35 || map-play-mag-gold% || 15 || 20 || t2m || t3m || t4m || || || || || || ||
|-
| 1577 || Occult || 1 || 1 || 1 || map-mon-phys-as-extra-mag || 12 || 14 || map-glob-density || 35 || 40 || map-play-mag-gold% || 25 || 30 || t3m || t4m || || || || || || || ||
|-
| 1578 || Stygian || 1 || 1 || 1 || map-glob-add-mon-doll || 690 || 690 || map-glob-density || 50 || 60 || map-play-mag-gold% || 40 || 45 || t1m || t2m || t3m || || || || || || ||
|-
| 1579 || Lustful || 1 || 1 || 1 || map-glob-add-mon-succ || 885 || 885 || map-glob-density || 50 || 60 || map-play-mag-gold% || 45 || 50 || t1m || t2m || t3m || || || || || || ||
|-
| 1580 || Vampiric || 1 || 1 || 1 || map-glob-add-mon-vamp || 697 || 697 || map-glob-density || 35 || 40 || map-play-mag-gold% || 15 || 20 || t1m || t2m || t3m || || || || || || ||
|-
| 1581 || Bovine || 1 || 1 || 1 || map-glob-add-mon-cow || 391 || 391 || map-glob-density || 35 || 40 || map-play-mag-gold% || 15 || 20 || t1m || t2m || t3m || || || || || || ||
|-
| 1582 || Reanimated || 1 || 1 || 1 || map-glob-add-mon-horde || 698 || 698 || map-glob-density || 50 || 60 || map-play-mag-gold% || 35 || 40 || t1m || t2m || t3m || || || || || || ||
|-
| 1583 || Ghastly || 1 || 1 || 1 || map-glob-add-mon-ghost || 732 || 732 || map-glob-density || 35 || 40 || map-play-mag-gold% || 15 || 20 || t1m || t2m || t3m || || || || || || ||
|-
| 1584 || Blood Letting || 1 || 13 || 12 || heal-kill || 1 || 1 || || || || || || || weap || ring || circ || tors || helm || shld || misl || || ||
|-
| 1585 || Murderous || 1 || 51 || 44 || heal-kill || 2 || 5 || || || || || || || weap || circ || tors || helm || shld || misl || || || ||
|-
| 1586 || Blood Sucking || 1 || 32 || 26 || heal-kill || 1 || 3 || || || || || || || jewl || tors || helm || shld || weap || ring || misl || || ||
|-
| 1587 || Channeling || 1 || 14 || 14 || extra-ltng || 1 || 1 || || || || || || || mcha || || || || || || || || ||
|-
| 1588 || Cold || 1 || 14 || 14 || extra-cold || 1 || 1 || || || || || || || mcha || || || || || || || || ||
|-
| 1589 || Cinder || 1 || 14 || 14 || extra-fire || 1 || 1 || || || || || || || mcha || || || || || || || || ||
|-
| 1590 || Morbid || 1 || 14 || 14 || extra-pois || 1 || 1 || || || || || || || mcha || || || || || || || || ||
|-
| || || || || || || || || || || || || || || || || || || || || || || ||
|-
| 1592 || Discharging || 1 || 28 || 28 || extra-ltng || 1 || 2 || || || || || || || mcha || || || || || || || || ||
|-
| 1593 || Frigid || 1 || 28 || 28 || extra-cold || 1 || 2 || || || || || || || mcha || || || || || || || || ||
|-
| 1594 || Wildfire || 1 || 28 || 28 || extra-fire || 1 || 2 || || || || || || || mcha || || || || || || || || ||
|-
| 1595 || Malicious || 1 || 28 || 28 || extra-pois || 1 || 2 || || || || || || || mcha || || || || || || || || ||
|-
| || || || || || || || || || || || || || || || || || || || || || || ||
|-
| 1597 || Conduit || 1 || 42 || 42 || extra-ltng || 2 || 3 || || || || || || || mcha || || || || || || || || ||
|-
| 1598 || Numbing || 1 || 42 || 42 || extra-cold || 2 || 3 || || || || || || || mcha || || || || || || || || ||
|-
| 1599 || Inferno || 1 || 42 || 42 || extra-fire || 2 || 3 || || || || || || || mcha || || || || || || || || ||
|-
| 1600 || Infectious || 1 || 42 || 42 || extra-pois || 2 || 3 || || || || || || || mcha || || || || || || || || ||
|-
| || || || || || || || || || || || || || || || || || || || || || || ||
|-
| 1602 || Visceral || 1 || 75 || 69 || dmg% || 301 || 400 || || || || || || || miss || amaz || knif || club || mace || tkni || taxe || aspe || ||
|-
| 1603 || Divine || 1 || 45 || 37 || att-undead || 326 || 450 || dmg-undead || 276 || 350 || || || || miss || || || || || || || || ||
|-
| 1604 || Celestial || 1 || 55 || 41 || att-demon || 301 || 400 || dmg-demon || 201 || 300 || || || || miss || || || || || || || || ||
|-
| 1605 || Grandmaster's || 1 || 69 || 61 || att || 251 || 300 || dmg% || 151 || 200 || || || || miss || || || || || || || || ||
|-
| 1606 || Supporting || 1 || 25 || 18 || dmg% || 10 || 20 || || || || || || || tors || shld || || || || || || || ||
|-
| 1607 || Reinforcing || 1 || 35 || 28 || dmg% || 20 || 40 || || || || || || || tors || shld || || || || || || || ||
|-
| 1608 || Empowering || 1 || 45 || 38 || dmg% || 40 || 60 || || || || || || || tors || shld || || || || || || || ||
|-
| 1609 || Bolstering || 1 || 55 || 48 || dmg% || 60 || 80 || || || || || || || tors || shld || || || || || || || ||
|-
| 1610 || Fortifying || 1 || 65 || 58 || dmg% || 80 || 120 || || || || || || || tors || shld || || || || || || || ||
|-
| 1611 || Embattled || 1 || 75 || 68 || dmg% || 120 || 160 || || || || || || || tors || shld || || || || || || || ||
|-
| 1612 || Rampaging || 1 || 85 || 78 || dmg% || 160 || 200 || || || || || || || tors || || || || || || || || ||
|-
| 1613 || Lancer's || 1 || 60 || 45 || skilltab || 3 || 3 || || || || || || || aspe || || || || || || || || ||
|-
| 1614 || Archer's || 1 || 60 || 45 || skilltab || 3 || 3 || || || || || || || miss || || || || || || || || ||
|-
| 1615 || Artificer's || 1 || 33 || 25 || sock || || || || || || || || || weap || shld || tors || || || || || thro || ||
|-
| 1616 || Artificer's || || 33 || 25 || sock || || || || || || || || || weap || shld || helm || tors || || || || thro || ||
|-
| 1617 || Lancer's || || 60 || 45 || skilltab || 3 || 3 || || || || || || || circ || glov || || || || || || || ||
|-
| 1618 || Maiden's || 1 || 36 || 65 || ama || 1 || 1 || || || || || || || helm || shld || tors || || || || || || ||
|-
| 1619 || Monk's || 1 || 65 || 58 || pal || 1 || 1 || || || || || || || tors || shld || helm || || || || || || ||
|-
| 1620 || Summoner's || 1 || 65 || 58 || nec || 1 || 1 || || || || || || || tors || shld || helm || || || || || || ||
|-
| 1621 || Angel's || 1 || 65 || 58 || sor || 1 || 1 || || || || || || || tors || shld || helm || || || || || || ||
|-
| 1622 || Slayer's || 1 || 65 || 58 || bar || 1 || 1 || || || || || || || tors || helm || shld || || || || || || ||
|-
| 1623 || Shaman's || 1 || 65 || 58 || dru || 1 || 1 || || || || || || || tors || shld || helm || || || || || || ||
|-
| 1624 || Magekiller's || 1 || 65 || 58 || ass || 1 || 1 || || || || || || || tors || shld || helm || || || || || || ||
|-
| 1625 || Cerulean || 1 || 49 || 41 || mana || 21 || 30 || || || || || || || jewl || || || || || || || || ||
|-
| 1626 || Lancer's || || 60 || 45 || skilltab || 3 || 3 || || || || || || || amu || || || || || || || || ||
|-
| 1627 || Souless || 1 || 1 || 1 || map-glob-add-mon-souls || 918 || 918 || map-glob-density || 50 || 60 || map-play-mag-gold% || 40 || 50 || t1m || t2m || t3m || || || || || || ||
|-
| 1628 || Shamanic || 1 || 1 || 1 || map-glob-add-mon-fetish || 785 || 785 || map-glob-density || 40 || 50 || map-play-mag-gold% || 15 || 20 || t1m || t2m || t3m || || || || || || ||
|-
| 1629 || Strange || || 32 || 24 || att || 151 || 300 || || || || || || || misl || || || || || || || || ||
|-
| 1630 || Unearthly || || 25 || 18 || att-demon || 101 || 150 || dmg-demon || 51 || 100 || || || || misl || || || || || || || || ||
|-
| 1631 || Plague || 1 || 50 || 37 || dmg-pois || 626 || 626 || || || || || || || weap || misl || || || || || || || ||
|-
| 1632 || Savage || || 26 || 19 || dmg% || 66 || 80 || || || || || || || misl || || || || || || || || ||
|-
| 1633 || Cardinal || 1 || 38 || 30 || dmg-min || 10 || 14 || || || || || || || jewl || misl || || || || || || || ||
|-
| 1634 || Penetrating || 1 || 15 || 10 || pierce || 5 || 10 || || || || || || || misl || || || || || || || || ||
|-
| 1635 || Puncturing || 1 || 30 || 25 || pierce || 11 || 20 || || || || || || || misl || || || || || || || || ||
|-
| 1636 || Piercing || 1 || 45 || 40 || pierce || 21 || 30 || || || || || || || misl || || || || || || || || ||
|-
| 1637 || Impaling || || 60 || 55 || pierce || 31 || 40 || || || || || || || misl || || || || || || || || ||
|-
| 1638 || Devout || 1 || 3 || 1 || att-undead || 25 || 50 || dmg-undead || 10 || 25 || || || || misl || || || || || || || || ||
|-
| 1639 || Consecrated || 1 || 15 || 11 || att-undead || 25 || 75 || dmg-undead || 25 || 75 || || || || misl || || || || || || || || ||
|-
| 1640 || Pure || || 25 || 18 || att-undead || 76 || 175 || dmg-undead || 76 || 125 || || || || misl || || || || || || || || ||
|-
| 1641 || Duplicated || 1 || 1 || 1 || map-glob-extra-boss || 1 || 1 || || || || || || || t1m || t2m || t3m || || || || || || ||
|-
| 1642 || Champion's || 1 || 1 || 1 || map-glob-monsterrarity || 40 || 50 || || || || || || || t2m || t3m || || || || || || || ||
|-
| 1643 || Champion's || 1 || 1 || 1 || map-glob-monsterrarity || 50 || 60 || || || || || || || t3m || t4m || || || || || || || ||
|-
| 1644 || Shrieking || 1 || 1 || 1 || map-glob-add-mon-shriek || 1047 || 1047 || map-glob-density || 50 || 60 || map-play-mag-gold% || 20 || 30 || t1m || t2m || t3m || || || || || t4m || ||
|}
 
<!--T:147-->
==== STAT360 IDs ====
[[Item_Filtering#General|STAT360]] refers to which corruption items have.
 
<code>ItemDisplay[STAT360>0]: %NAME% %RED%*</code> <span style="color:gray;">''appends a red '''*''' to corrupted items''</span>
<!--T:148-->
<code>ItemDisplay[STAT360>0]: %RED%%NAME%</code> <span style="color:gray;">''changes corrupted items to be red''</span>
 
<!--T:149-->
<div><ul style="margin-left:0px;">
<li style="display:inline-table; margin-left:0px; margin-right:8px;">
Line 5,764 ⟶ 2,896:
| 2 || Enhanced Damage
|-
| 3 || Attack Rating <span class="omod">(Weapons[T1] & non-weapons)</span>
|-
| 4 || Life after Hit
Line 5,780 ⟶ 2,912:
| 10 || Max Mana
|-
| 11 || <span class="omod">Faster Hit Recovery (unused)</span>
|-
| 12 || Ps Enemy Fire Res Reduc
Line 5,790 ⟶ 2,922:
| 15 || Ps Enemy Psn Res Reduc
|-
| 16 || Faster Cast <span class="omod">(Weapons)</span>
|-
| 17 || Life Leech, Enhanced Damage
|-
| 18 || Attack Rating <span class="omod">(Weapons[T2])</span>
| 18 || Thorns per Level
|-
| 19 || Deadly Strike
Line 5,818 ⟶ 2,950:
| 26 || Attack Rating, Enhanced Damage
|-
| 27 || All Skills <span class="omod">(Weapons)</span>
|-
| 28 || Fire Mastery, Faster Cast
Line 5,848 ⟶ 2,980:
| 41 || Thorns per Level
|-
| 42 || Faster Cast <span class="omod">(Non-weapons)</span>
|-
| 43 || Enhanced Life
Line 5,860 ⟶ 2,992:
| 47 || Magic Dmg Reduction
|-
| 48 || Indestructible, Enhanced Defense
|-
| 49 || Curse Resistance <span class="omod">(Chest, Helm, Quiver, Shield)</span>
| 49 || Indestructible, Enhanced Defense
|-
| 50 || All Skills <span class="omod">(Non-weapons)</span>
|}
</li>
Line 5,894 ⟶ 3,026:
| 61 || Max Hp
|-
| 62 || Curse Resistance <span class="omod">(Boots, Belt, Ring)</span>
|-
| 63 || Piercing Attack
Line 5,917 ⟶ 3,049:
|-
| 73 || To Block, Faster Block
|-
| 74 || Minimum Damage
|-
| 75 || Maximum Damage
|}
</li>
<li style="display:inline-table; margin-left:0px; margin-right:8px;">
{| class="wikitable"
|-
! ID !! Corruption
|-
| 76 || Ignore Targets Defense
|-
| 77 || Attack Rating vs Undead, Damage to Undead
|-
| 78 || Deadly Strike (mon), Density, Experience
|-
| 79 || Cannot be Frozen (mon), Increased Maximum Life (mon), Experience, Density
|-
| 80 || Faster Attack Rate, Faster Cast Rate, Density, Rarity
|-
| 81 || Physical Resist, Density, Rarity
|-
| 82 || Faster Attack Rate, Faster Cast Rate, Velocity, Density, Rarity
|-
| 83 || Magic Find, Gold Find, Rarity
|-
| 84 || Density
|-
| 85 || Area Level, Density
|-
| 86 || Rarity
|-
| 87 || All Maximum Resistances, Density, Rarity
|-
| 88 || Extra Jewelry
|-
| 89 || Experience Gained
|-
| 90 || Vitality, Energy
|}
</li>
<ul></div>
 
<!--T:170-->
<!-- spacing -->
 
<!--T:171-->
<!-- spacing -->
 
<!--T:172-->
<span class="emphasis">Source of Information on this Page</span>
 
<!--T:173-->
Corruption IDs can be determined from [https://github.com/Project-Diablo-2/BH/blob/587b7199ed07debbaf730bb4e1e4d8a1f2d76421/BH/Constants.h#L1162 PD2's BH files].
 
<!--T:174-->
See PD2's [https://github.com/BetweenWalls/PD2-Singleplayer/tree/main/Diablo%20II/ProjectD2/data/global/excel/modpacks/official text files] for updated info when game changes are made. The files are best viewed in table format since they are tab-delineated, so they should be opened with Microsoft Excel (or similar programs) or their text should be copy/pasted into a spreadsheet. For convenience, many of the game's text files are also saved on Google Drive: [https://drive.google.com/drive/folders/1kLTpnQ6NWD9G-9dki-4X8T_2ClGDik4o D2 Text File Tables].
 
<!--T:175-->
Prefix/suffix IDs can be determined from PD2's [https://github.com/BetweenWalls/PD2-Singleplayer/blob/main/Diablo%20II/ProjectD2/data/global/excel/modpacks/official/MagicPrefix.txt MagicPrefix.txt] and [https://github.com/BetweenWalls/PD2-Singleplayer/blob/main/Diablo%20II/ProjectD2/data/global/excel/modpacks/official/MagicSuffix.txt MagicSuffix.txt] files. All lines have their own ID except the line between the classic affixes and the expansion affixes, which is skipped. The suffix IDs begin counting from 1 and the prefix IDs continue from where the suffixes end.
 
<!--T:176-->
Zone IDs can be determined from PD2's [https://github.com/BetweenWalls/PD2-Singleplayer/blob/main/Diablo%20II/ProjectD2/data/global/excel/modpacks/official/Levels.txt Levels.txt] file.
 
If the files in these locations are not updated by others, you can extract them yourself from ''pd2data.mpq'' (found in ''Diablo II/ProjectD2'') using an [http://www.zezula.net/en/mpq/download.html MPQ editor and D2 listfile] - the text files will be in ''/data/global/excel''.
<!--T:177-->
If the files in these locations are not updated by others, you can extract them yourself from ''patch_d2.mpq'' (found in ''Diablo II/ProjectD2'') using an [http://www.zezula.net/en/mpq/download.html MPQ editor and D2 listfile] - the text files will be in ''/data/global/excel''.
 
</translate>
97

edits