- LFR: 4186
- Normal: 0
- Heroic: 4188
- Mythic: 4187
- Elite PvP: 7143
There are two Unchained Gladiator sets: one is bone/purple, the other is gray/blue (see below). The latter is likely for an Elite set, but has no Wowhead data at this time.
Wowhead has incorrect item data for the Resounding Rings set from MoP: the Normal set has all LFR items, and vice versa. Heroic is fine.
When entering Siege of Orgrimmar sets, Wowhead has two versions of each piece, one of which is No Longer Available (due to the changes in raid sizes at the time). In general, the second listed item on Wowhead will be the one that's currently in-game. in the list below, the circled items are valid in-game (and are preferred for entry into this site).
Code for the Appearance/Item Header:
<div style="text-align:left;">
<?php
function get_node_count() {
$database= \Drupal::database();
$query =$database->query( "SELECT COUNT(*) FROM {node} n WHERE n.type = 'gear_piece'");
$item_total =$query->fetchField();
return $item_total; }
function get_lookalike_count() {
$database= \Drupal::database();
$query=$database->query("SELECT COUNT(*) FROM {node__field_lookalikes}");
$lookalike_total=$query->fetchField();
$query =$database->query("SELECT COUNT(*) FROM {node} n WHERE n.type = 'gear_piece'");
$item_total = $query->fetchField();
return $item_total + $lookalike_total; }
echo "<i> " . get_node_count() . ' unique appearances representing '. get_lookalike_count() . ' items!' . "</i>";
?>
</div>