-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlink_tokens.sql
1078 lines (1078 loc) · 269 KB
/
link_tokens.sql
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 40625 LIMIT 1) as haxxorz), `parent_item_id` = 40625 WHERE `item_id` = 40423 AND `expansion_id` = 3; -- Valorous Plagueheart Robe -- Breastplate of the Lost Conqueror
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 40625 LIMIT 1) as haxxorz), `parent_item_id` = 40625 WHERE `item_id` = 40458 AND `expansion_id` = 3; -- Valorous Raiments of Faith -- Breastplate of the Lost Conqueror
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 40625 LIMIT 1) as haxxorz), `parent_item_id` = 40625 WHERE `item_id` = 40579 AND `expansion_id` = 3; -- Valorous Redemption Breastplate -- Breastplate of the Lost Conqueror
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 40625 LIMIT 1) as haxxorz), `parent_item_id` = 40625 WHERE `item_id` = 40574 AND `expansion_id` = 3; -- Valorous Redemption Chestpiece -- Breastplate of the Lost Conqueror
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 40625 LIMIT 1) as haxxorz), `parent_item_id` = 40625 WHERE `item_id` = 40569 AND `expansion_id` = 3; -- Valorous Redemption Tunic -- Breastplate of the Lost Conqueror
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 40625 LIMIT 1) as haxxorz), `parent_item_id` = 40625 WHERE `item_id` = 40449 AND `expansion_id` = 3; -- Valorous Robe of Faith -- Breastplate of the Lost Conqueror
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 40626 LIMIT 1) as haxxorz), `parent_item_id` = 40626 WHERE `item_id` = 40503 AND `expansion_id` = 3; -- Valorous Cryptstalker Tunic -- Breastplate of the Lost Protector
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 40626 LIMIT 1) as haxxorz), `parent_item_id` = 40626 WHERE `item_id` = 40525 AND `expansion_id` = 3; -- Valorous Dreadnaught Battleplate -- Breastplate of the Lost Protector
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 40626 LIMIT 1) as haxxorz), `parent_item_id` = 40626 WHERE `item_id` = 40544 AND `expansion_id` = 3; -- Valorous Dreadnaught Breastplate -- Breastplate of the Lost Protector
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 40626 LIMIT 1) as haxxorz), `parent_item_id` = 40626 WHERE `item_id` = 40523 AND `expansion_id` = 3; -- Valorous Earthshatter Chestguard -- Breastplate of the Lost Protector
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 40626 LIMIT 1) as haxxorz), `parent_item_id` = 40626 WHERE `item_id` = 40514 AND `expansion_id` = 3; -- Valorous Earthshatter Hauberk -- Breastplate of the Lost Protector
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 40626 LIMIT 1) as haxxorz), `parent_item_id` = 40626 WHERE `item_id` = 40508 AND `expansion_id` = 3; -- Valorous Earthshatter Tunic -- Breastplate of the Lost Protector
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 40627 LIMIT 1) as haxxorz), `parent_item_id` = 40627 WHERE `item_id` = 40495 AND `expansion_id` = 3; -- Valorous Bonescythe Breastplate -- Breastplate of the Lost Vanquisher
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 40627 LIMIT 1) as haxxorz), `parent_item_id` = 40627 WHERE `item_id` = 40471 AND `expansion_id` = 3; -- Valorous Dreamwalker Raiments -- Breastplate of the Lost Vanquisher
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 40627 LIMIT 1) as haxxorz), `parent_item_id` = 40627 WHERE `item_id` = 40463 AND `expansion_id` = 3; -- Valorous Dreamwalker Robe -- Breastplate of the Lost Vanquisher
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 40627 LIMIT 1) as haxxorz), `parent_item_id` = 40627 WHERE `item_id` = 40469 AND `expansion_id` = 3; -- Valorous Dreamwalker Vestments -- Breastplate of the Lost Vanquisher
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 40627 LIMIT 1) as haxxorz), `parent_item_id` = 40627 WHERE `item_id` = 40418 AND `expansion_id` = 3; -- Valorous Frostfire Robe -- Breastplate of the Lost Vanquisher
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 40627 LIMIT 1) as haxxorz), `parent_item_id` = 40627 WHERE `item_id` = 40550 AND `expansion_id` = 3; -- Valorous Scourgeborne Battleplate -- Breastplate of the Lost Vanquisher
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 40627 LIMIT 1) as haxxorz), `parent_item_id` = 40627 WHERE `item_id` = 40559 AND `expansion_id` = 3; -- Valorous Scourgeborne Chestguard -- Breastplate of the Lost Vanquisher
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 45632 LIMIT 1) as haxxorz), `parent_item_id` = 45632 WHERE `item_id` = 46154 AND `expansion_id` = 3; -- Conqueror's Aegis Battleplate -- Breastplate of the Wayward Conqueror
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 45632 LIMIT 1) as haxxorz), `parent_item_id` = 45632 WHERE `item_id` = 46173 AND `expansion_id` = 3; -- Conqueror's Aegis Breastplate -- Breastplate of the Wayward Conqueror
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 45632 LIMIT 1) as haxxorz), `parent_item_id` = 45632 WHERE `item_id` = 46178 AND `expansion_id` = 3; -- Conqueror's Aegis Tunic -- Breastplate of the Wayward Conqueror
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 45632 LIMIT 1) as haxxorz), `parent_item_id` = 45632 WHERE `item_id` = 46137 AND `expansion_id` = 3; -- Conqueror's Deathbringer Robe -- Breastplate of the Wayward Conqueror
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 45632 LIMIT 1) as haxxorz), `parent_item_id` = 45632 WHERE `item_id` = 46168 AND `expansion_id` = 3; -- Conqueror's Raiments of Sanctification -- Breastplate of the Wayward Conqueror
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 45632 LIMIT 1) as haxxorz), `parent_item_id` = 45632 WHERE `item_id` = 46193 AND `expansion_id` = 3; -- Conqueror's Robe of Sanctification -- Breastplate of the Wayward Conqueror
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 45633 LIMIT 1) as haxxorz), `parent_item_id` = 45633 WHERE `item_id` = 46141 AND `expansion_id` = 3; -- Conqueror's Scourgestalker Tunic -- Breastplate of the Wayward Protector
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 45633 LIMIT 1) as haxxorz), `parent_item_id` = 45633 WHERE `item_id` = 46146 AND `expansion_id` = 3; -- Conqueror's Siegebreaker Battleplate -- Breastplate of the Wayward Protector
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 45633 LIMIT 1) as haxxorz), `parent_item_id` = 45633 WHERE `item_id` = 46162 AND `expansion_id` = 3; -- Conqueror's Siegebreaker Breastplate -- Breastplate of the Wayward Protector
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 45633 LIMIT 1) as haxxorz), `parent_item_id` = 45633 WHERE `item_id` = 46205 AND `expansion_id` = 3; -- Conqueror's Worldbreaker Chestguard -- Breastplate of the Wayward Protector
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 45633 LIMIT 1) as haxxorz), `parent_item_id` = 45633 WHERE `item_id` = 46206 AND `expansion_id` = 3; -- Conqueror's Worldbreaker Hauberk -- Breastplate of the Wayward Protector
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 45633 LIMIT 1) as haxxorz), `parent_item_id` = 45633 WHERE `item_id` = 46198 AND `expansion_id` = 3; -- Conqueror's Worldbreaker Tunic -- Breastplate of the Wayward Protector
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 45634 LIMIT 1) as haxxorz), `parent_item_id` = 45634 WHERE `item_id` = 46111 AND `expansion_id` = 3; -- Conqueror's Darkruned Battleplate -- Breastplate of the Wayward Vanquisher
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 45634 LIMIT 1) as haxxorz), `parent_item_id` = 45634 WHERE `item_id` = 46118 AND `expansion_id` = 3; -- Conqueror's Darkruned Chestguard -- Breastplate of the Wayward Vanquisher
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 45634 LIMIT 1) as haxxorz), `parent_item_id` = 45634 WHERE `item_id` = 46130 AND `expansion_id` = 3; -- Conqueror's Kirin Tor Tunic -- Breastplate of the Wayward Vanquisher
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 45634 LIMIT 1) as haxxorz), `parent_item_id` = 45634 WHERE `item_id` = 46159 AND `expansion_id` = 3; -- Conqueror's Nightsong Raiments -- Breastplate of the Wayward Vanquisher
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 45634 LIMIT 1) as haxxorz), `parent_item_id` = 45634 WHERE `item_id` = 46186 AND `expansion_id` = 3; -- Conqueror's Nightsong Robe -- Breastplate of the Wayward Vanquisher
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 45634 LIMIT 1) as haxxorz), `parent_item_id` = 45634 WHERE `item_id` = 46194 AND `expansion_id` = 3; -- Conqueror's Nightsong Vestments -- Breastplate of the Wayward Vanquisher
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 45634 LIMIT 1) as haxxorz), `parent_item_id` = 45634 WHERE `item_id` = 46123 AND `expansion_id` = 3; -- Conqueror's Terrorblade Breastplate -- Breastplate of the Wayward Vanquisher
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 40610 LIMIT 1) as haxxorz), `parent_item_id` = 40610 WHERE `item_id` = 39497 AND `expansion_id` = 3; -- Heroes' Plagueheart Robe -- Chestguard of the Lost Conqueror
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 40610 LIMIT 1) as haxxorz), `parent_item_id` = 40610 WHERE `item_id` = 39523 AND `expansion_id` = 3; -- Heroes' Raiments of Faith -- Chestguard of the Lost Conqueror
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 40610 LIMIT 1) as haxxorz), `parent_item_id` = 40610 WHERE `item_id` = 39638 AND `expansion_id` = 3; -- Heroes' Redemption Breastplate -- Chestguard of the Lost Conqueror
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 40610 LIMIT 1) as haxxorz), `parent_item_id` = 40610 WHERE `item_id` = 39633 AND `expansion_id` = 3; -- Heroes' Redemption Chestpiece -- Chestguard of the Lost Conqueror
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 40610 LIMIT 1) as haxxorz), `parent_item_id` = 40610 WHERE `item_id` = 39629 AND `expansion_id` = 3; -- Heroes' Redemption Tunic -- Chestguard of the Lost Conqueror
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 40610 LIMIT 1) as haxxorz), `parent_item_id` = 40610 WHERE `item_id` = 39515 AND `expansion_id` = 3; -- Heroes' Robe of Faith -- Chestguard of the Lost Conqueror
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 40611 LIMIT 1) as haxxorz), `parent_item_id` = 40611 WHERE `item_id` = 39579 AND `expansion_id` = 3; -- Heroes' Cryptstalker Tunic -- Chestguard of the Lost Protector
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 40611 LIMIT 1) as haxxorz), `parent_item_id` = 40611 WHERE `item_id` = 39606 AND `expansion_id` = 3; -- Heroes' Dreadnaught Battleplate -- Chestguard of the Lost Protector
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 40611 LIMIT 1) as haxxorz), `parent_item_id` = 40611 WHERE `item_id` = 39611 AND `expansion_id` = 3; -- Heroes' Dreadnaught Breastplate -- Chestguard of the Lost Protector
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 40611 LIMIT 1) as haxxorz), `parent_item_id` = 40611 WHERE `item_id` = 39597 AND `expansion_id` = 3; -- Heroes' Earthshatter Chestguard -- Chestguard of the Lost Protector
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 40611 LIMIT 1) as haxxorz), `parent_item_id` = 40611 WHERE `item_id` = 39592 AND `expansion_id` = 3; -- Heroes' Earthshatter Hauberk -- Chestguard of the Lost Protector
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 40611 LIMIT 1) as haxxorz), `parent_item_id` = 40611 WHERE `item_id` = 39588 AND `expansion_id` = 3; -- Heroes' Earthshatter Tunic -- Chestguard of the Lost Protector
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 40612 LIMIT 1) as haxxorz), `parent_item_id` = 40612 WHERE `item_id` = 39558 AND `expansion_id` = 3; -- Heroes' Bonescythe Breastplate -- Chestguard of the Lost Vanquisher
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 40612 LIMIT 1) as haxxorz), `parent_item_id` = 40612 WHERE `item_id` = 39554 AND `expansion_id` = 3; -- Heroes' Dreamwalker Raiments -- Chestguard of the Lost Vanquisher
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 40612 LIMIT 1) as haxxorz), `parent_item_id` = 40612 WHERE `item_id` = 39538 AND `expansion_id` = 3; -- Heroes' Dreamwalker Robe -- Chestguard of the Lost Vanquisher
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 40612 LIMIT 1) as haxxorz), `parent_item_id` = 40612 WHERE `item_id` = 39547 AND `expansion_id` = 3; -- Heroes' Dreamwalker Vestments -- Chestguard of the Lost Vanquisher
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 40612 LIMIT 1) as haxxorz), `parent_item_id` = 40612 WHERE `item_id` = 39492 AND `expansion_id` = 3; -- Heroes' Frostfire Robe -- Chestguard of the Lost Vanquisher
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 40612 LIMIT 1) as haxxorz), `parent_item_id` = 40612 WHERE `item_id` = 39617 AND `expansion_id` = 3; -- Heroes' Scourgeborne Battleplate -- Chestguard of the Lost Vanquisher
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 40612 LIMIT 1) as haxxorz), `parent_item_id` = 40612 WHERE `item_id` = 39623 AND `expansion_id` = 3; -- Heroes' Scourgeborne Chestguard -- Chestguard of the Lost Vanquisher
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 45635 LIMIT 1) as haxxorz), `parent_item_id` = 45635 WHERE `item_id` = 45375 AND `expansion_id` = 3; -- Valorous Aegis Battleplate -- Chestguard of the Wayward Conqueror
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 45635 LIMIT 1) as haxxorz), `parent_item_id` = 45635 WHERE `item_id` = 45381 AND `expansion_id` = 3; -- Valorous Aegis Breastplate -- Chestguard of the Wayward Conqueror
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 45635 LIMIT 1) as haxxorz), `parent_item_id` = 45635 WHERE `item_id` = 45374 AND `expansion_id` = 3; -- Valorous Aegis Tunic -- Chestguard of the Wayward Conqueror
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 45635 LIMIT 1) as haxxorz), `parent_item_id` = 45635 WHERE `item_id` = 45421 AND `expansion_id` = 3; -- Valorous Deathbringer Robe -- Chestguard of the Wayward Conqueror
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 45635 LIMIT 1) as haxxorz), `parent_item_id` = 45635 WHERE `item_id` = 45395 AND `expansion_id` = 3; -- Valorous Raiments of Sanctification -- Chestguard of the Wayward Conqueror
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 45635 LIMIT 1) as haxxorz), `parent_item_id` = 45635 WHERE `item_id` = 45389 AND `expansion_id` = 3; -- Valorous Robe of Sanctification -- Chestguard of the Wayward Conqueror
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 45636 LIMIT 1) as haxxorz), `parent_item_id` = 45636 WHERE `item_id` = 45364 AND `expansion_id` = 3; -- Valorous Scourgestalker Tunic -- Chestguard of the Wayward Protector
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 45636 LIMIT 1) as haxxorz), `parent_item_id` = 45636 WHERE `item_id` = 45429 AND `expansion_id` = 3; -- Valorous Siegebreaker Battleplate -- Chestguard of the Wayward Protector
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 45636 LIMIT 1) as haxxorz), `parent_item_id` = 45636 WHERE `item_id` = 45424 AND `expansion_id` = 3; -- Valorous Siegebreaker Breastplate -- Chestguard of the Wayward Protector
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 45636 LIMIT 1) as haxxorz), `parent_item_id` = 45636 WHERE `item_id` = 45413 AND `expansion_id` = 3; -- Valorous Worldbreaker Chestguard -- Chestguard of the Wayward Protector
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 45636 LIMIT 1) as haxxorz), `parent_item_id` = 45636 WHERE `item_id` = 45411 AND `expansion_id` = 3; -- Valorous Worldbreaker Hauberk -- Chestguard of the Wayward Protector
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 45636 LIMIT 1) as haxxorz), `parent_item_id` = 45636 WHERE `item_id` = 45405 AND `expansion_id` = 3; -- Valorous Worldbreaker Tunic -- Chestguard of the Wayward Protector
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 45637 LIMIT 1) as haxxorz), `parent_item_id` = 45637 WHERE `item_id` = 45340 AND `expansion_id` = 3; -- Valorous Darkruned Battleplate -- Chestguard of the Wayward Vanquisher
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 45637 LIMIT 1) as haxxorz), `parent_item_id` = 45637 WHERE `item_id` = 45335 AND `expansion_id` = 3; -- Valorous Darkruned Chestguard -- Chestguard of the Wayward Vanquisher
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 45637 LIMIT 1) as haxxorz), `parent_item_id` = 45637 WHERE `item_id` = 45368 AND `expansion_id` = 3; -- Valorous Kirin Tor Tunic -- Chestguard of the Wayward Vanquisher
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 45637 LIMIT 1) as haxxorz), `parent_item_id` = 45637 WHERE `item_id` = 45358 AND `expansion_id` = 3; -- Valorous Nightsong Raiments -- Chestguard of the Wayward Vanquisher
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 45637 LIMIT 1) as haxxorz), `parent_item_id` = 45637 WHERE `item_id` = 45348 AND `expansion_id` = 3; -- Valorous Nightsong Robe -- Chestguard of the Wayward Vanquisher
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 45637 LIMIT 1) as haxxorz), `parent_item_id` = 45637 WHERE `item_id` = 45354 AND `expansion_id` = 3; -- Valorous Nightsong Vestments -- Chestguard of the Wayward Vanquisher
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 45637 LIMIT 1) as haxxorz), `parent_item_id` = 45637 WHERE `item_id` = 45396 AND `expansion_id` = 3; -- Valorous Terrorblade Breastplate -- Chestguard of the Wayward Vanquisher
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 52027 LIMIT 1) as haxxorz), `parent_item_id` = 52027 WHERE `item_id` = 51175 AND `expansion_id` = 3; -- Sanctified Crimson Acolyte Shoulderpads -- Conqueror's Mark of Sanctification
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 52027 LIMIT 1) as haxxorz), `parent_item_id` = 52027 WHERE `item_id` = 51170 AND `expansion_id` = 3; -- Sanctified Lightsworn Shoulderguards -- Conqueror's Mark of Sanctification
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 52027 LIMIT 1) as haxxorz), `parent_item_id` = 52027 WHERE `item_id` = 51176 AND `expansion_id` = 3; -- Sanctified Crimson Acolyte Robe -- Conqueror's Mark of Sanctification
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 52027 LIMIT 1) as haxxorz), `parent_item_id` = 52027 WHERE `item_id` = 51165 AND `expansion_id` = 3; -- Sanctified Lightsworn Tunic -- Conqueror's Mark of Sanctification
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 52027 LIMIT 1) as haxxorz), `parent_item_id` = 52027 WHERE `item_id` = 51171 AND `expansion_id` = 3; -- Sanctified Lightsworn Legguards -- Conqueror's Mark of Sanctification
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 52027 LIMIT 1) as haxxorz), `parent_item_id` = 52027 WHERE `item_id` = 51177 AND `expansion_id` = 3; -- Sanctified Crimson Acolyte Leggings -- Conqueror's Mark of Sanctification
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 52027 LIMIT 1) as haxxorz), `parent_item_id` = 52027 WHERE `item_id` = 51166 AND `expansion_id` = 3; -- Sanctified Lightsworn Spaulders -- Conqueror's Mark of Sanctification
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 52027 LIMIT 1) as haxxorz), `parent_item_id` = 52027 WHERE `item_id` = 51172 AND `expansion_id` = 3; -- Sanctified Lightsworn Handguards -- Conqueror's Mark of Sanctification
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 52027 LIMIT 1) as haxxorz), `parent_item_id` = 52027 WHERE `item_id` = 51178 AND `expansion_id` = 3; -- Sanctified Crimson Acolyte Hood -- Conqueror's Mark of Sanctification
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 52027 LIMIT 1) as haxxorz), `parent_item_id` = 52027 WHERE `item_id` = 51167 AND `expansion_id` = 3; -- Sanctified Lightsworn Headpiece -- Conqueror's Mark of Sanctification
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 52027 LIMIT 1) as haxxorz), `parent_item_id` = 52027 WHERE `item_id` = 51173 AND `expansion_id` = 3; -- Sanctified Lightsworn Faceguard -- Conqueror's Mark of Sanctification
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 52027 LIMIT 1) as haxxorz), `parent_item_id` = 52027 WHERE `item_id` = 51179 AND `expansion_id` = 3; -- Sanctified Crimson Acolyte Gloves -- Conqueror's Mark of Sanctification
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 52027 LIMIT 1) as haxxorz), `parent_item_id` = 52027 WHERE `item_id` = 51168 AND `expansion_id` = 3; -- Sanctified Lightsworn Greaves -- Conqueror's Mark of Sanctification
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 52027 LIMIT 1) as haxxorz), `parent_item_id` = 52027 WHERE `item_id` = 51174 AND `expansion_id` = 3; -- Sanctified Lightsworn Chestguard -- Conqueror's Mark of Sanctification
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 52027 LIMIT 1) as haxxorz), `parent_item_id` = 52027 WHERE `item_id` = 51180 AND `expansion_id` = 3; -- Sanctified Crimson Acolyte Raiments -- Conqueror's Mark of Sanctification
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 52027 LIMIT 1) as haxxorz), `parent_item_id` = 52027 WHERE `item_id` = 51169 AND `expansion_id` = 3; -- Sanctified Lightsworn Gloves -- Conqueror's Mark of Sanctification
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 52027 LIMIT 1) as haxxorz), `parent_item_id` = 52027 WHERE `item_id` = 51205 AND `expansion_id` = 3; -- Sanctified Dark Coven Shoulderpads -- Conqueror's Mark of Sanctification
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 52027 LIMIT 1) as haxxorz), `parent_item_id` = 52027 WHERE `item_id` = 51181 AND `expansion_id` = 3; -- Sanctified Crimson Acolyte Pants -- Conqueror's Mark of Sanctification
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 52027 LIMIT 1) as haxxorz), `parent_item_id` = 52027 WHERE `item_id` = 51160 AND `expansion_id` = 3; -- Sanctified Lightsworn Shoulderplates -- Conqueror's Mark of Sanctification
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 52027 LIMIT 1) as haxxorz), `parent_item_id` = 52027 WHERE `item_id` = 51206 AND `expansion_id` = 3; -- Sanctified Dark Coven Robe -- Conqueror's Mark of Sanctification
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 52027 LIMIT 1) as haxxorz), `parent_item_id` = 52027 WHERE `item_id` = 51182 AND `expansion_id` = 3; -- Sanctified Crimson Acolyte Mantle -- Conqueror's Mark of Sanctification
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 52027 LIMIT 1) as haxxorz), `parent_item_id` = 52027 WHERE `item_id` = 51161 AND `expansion_id` = 3; -- Sanctified Lightsworn Legplates -- Conqueror's Mark of Sanctification
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 52027 LIMIT 1) as haxxorz), `parent_item_id` = 52027 WHERE `item_id` = 51207 AND `expansion_id` = 3; -- Sanctified Dark Coven Leggings -- Conqueror's Mark of Sanctification
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 52027 LIMIT 1) as haxxorz), `parent_item_id` = 52027 WHERE `item_id` = 51183 AND `expansion_id` = 3; -- Sanctified Crimson Acolyte Handwraps -- Conqueror's Mark of Sanctification
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 52027 LIMIT 1) as haxxorz), `parent_item_id` = 52027 WHERE `item_id` = 51162 AND `expansion_id` = 3; -- Sanctified Lightsworn Helmet -- Conqueror's Mark of Sanctification
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 52027 LIMIT 1) as haxxorz), `parent_item_id` = 52027 WHERE `item_id` = 51208 AND `expansion_id` = 3; -- Sanctified Dark Coven Hood -- Conqueror's Mark of Sanctification
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 52027 LIMIT 1) as haxxorz), `parent_item_id` = 52027 WHERE `item_id` = 51184 AND `expansion_id` = 3; -- Sanctified Crimson Acolyte Cowl -- Conqueror's Mark of Sanctification
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 52027 LIMIT 1) as haxxorz), `parent_item_id` = 52027 WHERE `item_id` = 51163 AND `expansion_id` = 3; -- Sanctified Lightsworn Gauntlets -- Conqueror's Mark of Sanctification
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 52027 LIMIT 1) as haxxorz), `parent_item_id` = 52027 WHERE `item_id` = 51209 AND `expansion_id` = 3; -- Sanctified Dark Coven Gloves -- Conqueror's Mark of Sanctification
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 52027 LIMIT 1) as haxxorz), `parent_item_id` = 52027 WHERE `item_id` = 51164 AND `expansion_id` = 3; -- Sanctified Lightsworn Battleplate -- Conqueror's Mark of Sanctification
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 52030 LIMIT 1) as haxxorz), `parent_item_id` = 52030 WHERE `item_id` = 51255 AND `expansion_id` = 3; -- Sanctified Crimson Acolyte Cowl -- Conqueror's Mark of Sanctification
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 52030 LIMIT 1) as haxxorz), `parent_item_id` = 52030 WHERE `item_id` = 51260 AND `expansion_id` = 3; -- Sanctified Crimson Acolyte Gloves -- Conqueror's Mark of Sanctification
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 52030 LIMIT 1) as haxxorz), `parent_item_id` = 52030 WHERE `item_id` = 51256 AND `expansion_id` = 3; -- Sanctified Crimson Acolyte Handwraps -- Conqueror's Mark of Sanctification
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 52030 LIMIT 1) as haxxorz), `parent_item_id` = 52030 WHERE `item_id` = 51261 AND `expansion_id` = 3; -- Sanctified Crimson Acolyte Hood -- Conqueror's Mark of Sanctification
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 52030 LIMIT 1) as haxxorz), `parent_item_id` = 52030 WHERE `item_id` = 51262 AND `expansion_id` = 3; -- Sanctified Crimson Acolyte Leggings -- Conqueror's Mark of Sanctification
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 52030 LIMIT 1) as haxxorz), `parent_item_id` = 52030 WHERE `item_id` = 51257 AND `expansion_id` = 3; -- Sanctified Crimson Acolyte Mantle -- Conqueror's Mark of Sanctification
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 52030 LIMIT 1) as haxxorz), `parent_item_id` = 52030 WHERE `item_id` = 51258 AND `expansion_id` = 3; -- Sanctified Crimson Acolyte Pants -- Conqueror's Mark of Sanctification
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 52030 LIMIT 1) as haxxorz), `parent_item_id` = 52030 WHERE `item_id` = 51259 AND `expansion_id` = 3; -- Sanctified Crimson Acolyte Raiments -- Conqueror's Mark of Sanctification
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 52030 LIMIT 1) as haxxorz), `parent_item_id` = 52030 WHERE `item_id` = 51263 AND `expansion_id` = 3; -- Sanctified Crimson Acolyte Robe -- Conqueror's Mark of Sanctification
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 52030 LIMIT 1) as haxxorz), `parent_item_id` = 52030 WHERE `item_id` = 51264 AND `expansion_id` = 3; -- Sanctified Crimson Acolyte Shoulderpads -- Conqueror's Mark of Sanctification
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 52030 LIMIT 1) as haxxorz), `parent_item_id` = 52030 WHERE `item_id` = 51230 AND `expansion_id` = 3; -- Sanctified Dark Coven Gloves -- Conqueror's Mark of Sanctification
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 52030 LIMIT 1) as haxxorz), `parent_item_id` = 52030 WHERE `item_id` = 51231 AND `expansion_id` = 3; -- Sanctified Dark Coven Hood -- Conqueror's Mark of Sanctification
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 52030 LIMIT 1) as haxxorz), `parent_item_id` = 52030 WHERE `item_id` = 51232 AND `expansion_id` = 3; -- Sanctified Dark Coven Leggings -- Conqueror's Mark of Sanctification
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 52030 LIMIT 1) as haxxorz), `parent_item_id` = 52030 WHERE `item_id` = 51233 AND `expansion_id` = 3; -- Sanctified Dark Coven Robe -- Conqueror's Mark of Sanctification
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 52030 LIMIT 1) as haxxorz), `parent_item_id` = 52030 WHERE `item_id` = 51234 AND `expansion_id` = 3; -- Sanctified Dark Coven Shoulderpads -- Conqueror's Mark of Sanctification
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 52030 LIMIT 1) as haxxorz), `parent_item_id` = 52030 WHERE `item_id` = 51275 AND `expansion_id` = 3; -- Sanctified Lightsworn Battleplate -- Conqueror's Mark of Sanctification
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 52030 LIMIT 1) as haxxorz), `parent_item_id` = 52030 WHERE `item_id` = 51265 AND `expansion_id` = 3; -- Sanctified Lightsworn Chestguard -- Conqueror's Mark of Sanctification
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 52030 LIMIT 1) as haxxorz), `parent_item_id` = 52030 WHERE `item_id` = 51266 AND `expansion_id` = 3; -- Sanctified Lightsworn Faceguard -- Conqueror's Mark of Sanctification
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 52030 LIMIT 1) as haxxorz), `parent_item_id` = 52030 WHERE `item_id` = 51276 AND `expansion_id` = 3; -- Sanctified Lightsworn Gauntlets -- Conqueror's Mark of Sanctification
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 52030 LIMIT 1) as haxxorz), `parent_item_id` = 52030 WHERE `item_id` = 51270 AND `expansion_id` = 3; -- Sanctified Lightsworn Gloves -- Conqueror's Mark of Sanctification
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 52030 LIMIT 1) as haxxorz), `parent_item_id` = 52030 WHERE `item_id` = 51271 AND `expansion_id` = 3; -- Sanctified Lightsworn Greaves -- Conqueror's Mark of Sanctification
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 52030 LIMIT 1) as haxxorz), `parent_item_id` = 52030 WHERE `item_id` = 51267 AND `expansion_id` = 3; -- Sanctified Lightsworn Handguards -- Conqueror's Mark of Sanctification
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 52030 LIMIT 1) as haxxorz), `parent_item_id` = 52030 WHERE `item_id` = 51272 AND `expansion_id` = 3; -- Sanctified Lightsworn Headpiece -- Conqueror's Mark of Sanctification
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 52030 LIMIT 1) as haxxorz), `parent_item_id` = 52030 WHERE `item_id` = 51277 AND `expansion_id` = 3; -- Sanctified Lightsworn Helmet -- Conqueror's Mark of Sanctification
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 52030 LIMIT 1) as haxxorz), `parent_item_id` = 52030 WHERE `item_id` = 51268 AND `expansion_id` = 3; -- Sanctified Lightsworn Legguards -- Conqueror's Mark of Sanctification
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 52030 LIMIT 1) as haxxorz), `parent_item_id` = 52030 WHERE `item_id` = 51278 AND `expansion_id` = 3; -- Sanctified Lightsworn Legplates -- Conqueror's Mark of Sanctification
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 52030 LIMIT 1) as haxxorz), `parent_item_id` = 52030 WHERE `item_id` = 51269 AND `expansion_id` = 3; -- Sanctified Lightsworn Shoulderguards -- Conqueror's Mark of Sanctification
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 52030 LIMIT 1) as haxxorz), `parent_item_id` = 52030 WHERE `item_id` = 51279 AND `expansion_id` = 3; -- Sanctified Lightsworn Shoulderplates -- Conqueror's Mark of Sanctification
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 52030 LIMIT 1) as haxxorz), `parent_item_id` = 52030 WHERE `item_id` = 51273 AND `expansion_id` = 3; -- Sanctified Lightsworn Spaulders -- Conqueror's Mark of Sanctification
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 52030 LIMIT 1) as haxxorz), `parent_item_id` = 52030 WHERE `item_id` = 51274 AND `expansion_id` = 3; -- Sanctified Lightsworn Tunic -- Conqueror's Mark of Sanctification
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 40631 LIMIT 1) as haxxorz), `parent_item_id` = 40631 WHERE `item_id` = 40456 AND `expansion_id` = 3; -- Valorous Circlet of Faith -- Crown of the Lost Conqueror
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 40631 LIMIT 1) as haxxorz), `parent_item_id` = 40631 WHERE `item_id` = 40447 AND `expansion_id` = 3; -- Valorous Crown of Faith -- Crown of the Lost Conqueror
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 40631 LIMIT 1) as haxxorz), `parent_item_id` = 40631 WHERE `item_id` = 40421 AND `expansion_id` = 3; -- Valorous Plagueheart Circlet -- Crown of the Lost Conqueror
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 40631 LIMIT 1) as haxxorz), `parent_item_id` = 40631 WHERE `item_id` = 40581 AND `expansion_id` = 3; -- Valorous Redemption Faceguard -- Crown of the Lost Conqueror
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 40631 LIMIT 1) as haxxorz), `parent_item_id` = 40631 WHERE `item_id` = 40571 AND `expansion_id` = 3; -- Valorous Redemption Headpiece -- Crown of the Lost Conqueror
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 40631 LIMIT 1) as haxxorz), `parent_item_id` = 40631 WHERE `item_id` = 40576 AND `expansion_id` = 3; -- Valorous Redemption Helm -- Crown of the Lost Conqueror
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 40632 LIMIT 1) as haxxorz), `parent_item_id` = 40632 WHERE `item_id` = 40505 AND `expansion_id` = 3; -- Valorous Cryptstalker Headpiece -- Crown of the Lost Protector
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 40632 LIMIT 1) as haxxorz), `parent_item_id` = 40632 WHERE `item_id` = 40546 AND `expansion_id` = 3; -- Valorous Dreadnaught Greathelm -- Crown of the Lost Protector
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 40632 LIMIT 1) as haxxorz), `parent_item_id` = 40632 WHERE `item_id` = 40528 AND `expansion_id` = 3; -- Valorous Dreadnaught Helmet -- Crown of the Lost Protector
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 40632 LIMIT 1) as haxxorz), `parent_item_id` = 40632 WHERE `item_id` = 40521 AND `expansion_id` = 3; -- Valorous Earthshatter Faceguard -- Crown of the Lost Protector
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 40632 LIMIT 1) as haxxorz), `parent_item_id` = 40632 WHERE `item_id` = 40510 AND `expansion_id` = 3; -- Valorous Earthshatter Headpiece -- Crown of the Lost Protector
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 40632 LIMIT 1) as haxxorz), `parent_item_id` = 40632 WHERE `item_id` = 40516 AND `expansion_id` = 3; -- Valorous Earthshatter Helm -- Crown of the Lost Protector
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 40633 LIMIT 1) as haxxorz), `parent_item_id` = 40633 WHERE `item_id` = 40499 AND `expansion_id` = 3; -- Valorous Bonescythe Helmet -- Crown of the Lost Vanquisher
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 40633 LIMIT 1) as haxxorz), `parent_item_id` = 40633 WHERE `item_id` = 40467 AND `expansion_id` = 3; -- Valorous Dreamwalker Cover -- Crown of the Lost Vanquisher
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 40633 LIMIT 1) as haxxorz), `parent_item_id` = 40633 WHERE `item_id` = 40473 AND `expansion_id` = 3; -- Valorous Dreamwalker Headguard -- Crown of the Lost Vanquisher
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 40633 LIMIT 1) as haxxorz), `parent_item_id` = 40633 WHERE `item_id` = 40461 AND `expansion_id` = 3; -- Valorous Dreamwalker Headpiece -- Crown of the Lost Vanquisher
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 40633 LIMIT 1) as haxxorz), `parent_item_id` = 40633 WHERE `item_id` = 40416 AND `expansion_id` = 3; -- Valorous Frostfire Circlet -- Crown of the Lost Vanquisher
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 40633 LIMIT 1) as haxxorz), `parent_item_id` = 40633 WHERE `item_id` = 40565 AND `expansion_id` = 3; -- Valorous Scourgeborne Faceguard -- Crown of the Lost Vanquisher
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 40633 LIMIT 1) as haxxorz), `parent_item_id` = 40633 WHERE `item_id` = 40554 AND `expansion_id` = 3; -- Valorous Scourgeborne Helmet -- Crown of the Lost Vanquisher
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 45638 LIMIT 1) as haxxorz), `parent_item_id` = 45638 WHERE `item_id` = 46175 AND `expansion_id` = 3; -- Conqueror's Aegis Faceguard -- Crown of the Wayward Conqueror
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 45638 LIMIT 1) as haxxorz), `parent_item_id` = 45638 WHERE `item_id` = 46180 AND `expansion_id` = 3; -- Conqueror's Aegis Headpiece -- Crown of the Wayward Conqueror
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 45638 LIMIT 1) as haxxorz), `parent_item_id` = 45638 WHERE `item_id` = 46156 AND `expansion_id` = 3; -- Conqueror's Aegis Helm -- Crown of the Wayward Conqueror
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 45638 LIMIT 1) as haxxorz), `parent_item_id` = 45638 WHERE `item_id` = 46172 AND `expansion_id` = 3; -- Conqueror's Circlet of Sanctification -- Crown of the Wayward Conqueror
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 45638 LIMIT 1) as haxxorz), `parent_item_id` = 45638 WHERE `item_id` = 46197 AND `expansion_id` = 3; -- Conqueror's Cowl of Sanctification -- Crown of the Wayward Conqueror
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 45638 LIMIT 1) as haxxorz), `parent_item_id` = 45638 WHERE `item_id` = 46140 AND `expansion_id` = 3; -- Conqueror's Deathbringer Hood -- Crown of the Wayward Conqueror
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 45639 LIMIT 1) as haxxorz), `parent_item_id` = 45639 WHERE `item_id` = 46143 AND `expansion_id` = 3; -- Conqueror's Scourgestalker Headpiece -- Crown of the Wayward Protector
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 45639 LIMIT 1) as haxxorz), `parent_item_id` = 45639 WHERE `item_id` = 46166 AND `expansion_id` = 3; -- Conqueror's Siegebreaker Greathelm -- Crown of the Wayward Protector
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 45639 LIMIT 1) as haxxorz), `parent_item_id` = 45639 WHERE `item_id` = 46151 AND `expansion_id` = 3; -- Conqueror's Siegebreaker Helmet -- Crown of the Wayward Protector
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 45639 LIMIT 1) as haxxorz), `parent_item_id` = 45639 WHERE `item_id` = 46212 AND `expansion_id` = 3; -- Conqueror's Worldbreaker Faceguard -- Crown of the Wayward Protector
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 45639 LIMIT 1) as haxxorz), `parent_item_id` = 45639 WHERE `item_id` = 46201 AND `expansion_id` = 3; -- Conqueror's Worldbreaker Headpiece -- Crown of the Wayward Protector
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 45639 LIMIT 1) as haxxorz), `parent_item_id` = 45639 WHERE `item_id` = 46209 AND `expansion_id` = 3; -- Conqueror's Worldbreaker Helm -- Crown of the Wayward Protector
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 45640 LIMIT 1) as haxxorz), `parent_item_id` = 45640 WHERE `item_id` = 46120 AND `expansion_id` = 3; -- Conqueror's Darkruned Faceguard -- Crown of the Wayward Vanquisher
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 45640 LIMIT 1) as haxxorz), `parent_item_id` = 45640 WHERE `item_id` = 46115 AND `expansion_id` = 3; -- Conqueror's Darkruned Helmet -- Crown of the Wayward Vanquisher
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 45640 LIMIT 1) as haxxorz), `parent_item_id` = 45640 WHERE `item_id` = 46129 AND `expansion_id` = 3; -- Conqueror's Kirin Tor Hood -- Crown of the Wayward Vanquisher
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 45640 LIMIT 1) as haxxorz), `parent_item_id` = 45640 WHERE `item_id` = 46191 AND `expansion_id` = 3; -- Conqueror's Nightsong Cover -- Crown of the Wayward Vanquisher
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 45640 LIMIT 1) as haxxorz), `parent_item_id` = 45640 WHERE `item_id` = 46161 AND `expansion_id` = 3; -- Conqueror's Nightsong Headguard -- Crown of the Wayward Vanquisher
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 45640 LIMIT 1) as haxxorz), `parent_item_id` = 45640 WHERE `item_id` = 46184 AND `expansion_id` = 3; -- Conqueror's Nightsong Headpiece -- Crown of the Wayward Vanquisher
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 45640 LIMIT 1) as haxxorz), `parent_item_id` = 45640 WHERE `item_id` = 46125 AND `expansion_id` = 3; -- Conqueror's Terrorblade Helmet -- Crown of the Wayward Vanquisher
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 40628 LIMIT 1) as haxxorz), `parent_item_id` = 40628 WHERE `item_id` = 40445 AND `expansion_id` = 3; -- Valorous Gloves of Faith -- Gauntlets of the Lost Conqueror
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 40628 LIMIT 1) as haxxorz), `parent_item_id` = 40628 WHERE `item_id` = 40454 AND `expansion_id` = 3; -- Valorous Handwraps of Faith -- Gauntlets of the Lost Conqueror
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 40628 LIMIT 1) as haxxorz), `parent_item_id` = 40628 WHERE `item_id` = 40420 AND `expansion_id` = 3; -- Valorous Plagueheart Gloves -- Gauntlets of the Lost Conqueror
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 40628 LIMIT 1) as haxxorz), `parent_item_id` = 40628 WHERE `item_id` = 40575 AND `expansion_id` = 3; -- Valorous Redemption Gauntlets -- Gauntlets of the Lost Conqueror
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 40628 LIMIT 1) as haxxorz), `parent_item_id` = 40628 WHERE `item_id` = 40570 AND `expansion_id` = 3; -- Valorous Redemption Gloves -- Gauntlets of the Lost Conqueror
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 40628 LIMIT 1) as haxxorz), `parent_item_id` = 40628 WHERE `item_id` = 40580 AND `expansion_id` = 3; -- Valorous Redemption Handguards -- Gauntlets of the Lost Conqueror
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 40629 LIMIT 1) as haxxorz), `parent_item_id` = 40629 WHERE `item_id` = 40504 AND `expansion_id` = 3; -- Valorous Cryptstalker Handguards -- Gauntlets of the Lost Protector
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 40629 LIMIT 1) as haxxorz), `parent_item_id` = 40629 WHERE `item_id` = 40527 AND `expansion_id` = 3; -- Valorous Dreadnaught Gauntlets -- Gauntlets of the Lost Protector
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 40629 LIMIT 1) as haxxorz), `parent_item_id` = 40629 WHERE `item_id` = 40545 AND `expansion_id` = 3; -- Valorous Dreadnaught Handguards -- Gauntlets of the Lost Protector
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 40629 LIMIT 1) as haxxorz), `parent_item_id` = 40629 WHERE `item_id` = 40515 AND `expansion_id` = 3; -- Valorous Earthshatter Gloves -- Gauntlets of the Lost Protector
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 40629 LIMIT 1) as haxxorz), `parent_item_id` = 40629 WHERE `item_id` = 40520 AND `expansion_id` = 3; -- Valorous Earthshatter Grips -- Gauntlets of the Lost Protector
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 40629 LIMIT 1) as haxxorz), `parent_item_id` = 40629 WHERE `item_id` = 40509 AND `expansion_id` = 3; -- Valorous Earthshatter Handguards -- Gauntlets of the Lost Protector
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 40630 LIMIT 1) as haxxorz), `parent_item_id` = 40630 WHERE `item_id` = 40496 AND `expansion_id` = 3; -- Valorous Bonescythe Gauntlets -- Gauntlets of the Lost Vanquisher
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 40630 LIMIT 1) as haxxorz), `parent_item_id` = 40630 WHERE `item_id` = 40466 AND `expansion_id` = 3; -- Valorous Dreamwalker Gloves -- Gauntlets of the Lost Vanquisher
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 40630 LIMIT 1) as haxxorz), `parent_item_id` = 40630 WHERE `item_id` = 40472 AND `expansion_id` = 3; -- Valorous Dreamwalker Handgrips -- Gauntlets of the Lost Vanquisher
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 40630 LIMIT 1) as haxxorz), `parent_item_id` = 40630 WHERE `item_id` = 40460 AND `expansion_id` = 3; -- Valorous Dreamwalker Handguards -- Gauntlets of the Lost Vanquisher
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 40630 LIMIT 1) as haxxorz), `parent_item_id` = 40630 WHERE `item_id` = 40415 AND `expansion_id` = 3; -- Valorous Frostfire Gloves -- Gauntlets of the Lost Vanquisher
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 40630 LIMIT 1) as haxxorz), `parent_item_id` = 40630 WHERE `item_id` = 40552 AND `expansion_id` = 3; -- Valorous Scourgeborne Gauntlets -- Gauntlets of the Lost Vanquisher
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 40630 LIMIT 1) as haxxorz), `parent_item_id` = 40630 WHERE `item_id` = 40563 AND `expansion_id` = 3; -- Valorous Scourgeborne Handguards -- Gauntlets of the Lost Vanquisher
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 45641 LIMIT 1) as haxxorz), `parent_item_id` = 45641 WHERE `item_id` = 46155 AND `expansion_id` = 3; -- Conqueror's Aegis Gauntlets -- Gauntlets of the Wayward Conqueror
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 45641 LIMIT 1) as haxxorz), `parent_item_id` = 45641 WHERE `item_id` = 46179 AND `expansion_id` = 3; -- Conqueror's Aegis Gloves -- Gauntlets of the Wayward Conqueror
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 45641 LIMIT 1) as haxxorz), `parent_item_id` = 45641 WHERE `item_id` = 46174 AND `expansion_id` = 3; -- Conqueror's Aegis Handguards -- Gauntlets of the Wayward Conqueror
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 45641 LIMIT 1) as haxxorz), `parent_item_id` = 45641 WHERE `item_id` = 46135 AND `expansion_id` = 3; -- Conqueror's Deathbringer Gloves -- Gauntlets of the Wayward Conqueror
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 45641 LIMIT 1) as haxxorz), `parent_item_id` = 45641 WHERE `item_id` = 46188 AND `expansion_id` = 3; -- Conqueror's Gloves of Sanctification -- Gauntlets of the Wayward Conqueror
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 45641 LIMIT 1) as haxxorz), `parent_item_id` = 45641 WHERE `item_id` = 46163 AND `expansion_id` = 3; -- Conqueror's Handwraps of Sanctification -- Gauntlets of the Wayward Conqueror
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 45642 LIMIT 1) as haxxorz), `parent_item_id` = 45642 WHERE `item_id` = 46142 AND `expansion_id` = 3; -- Conqueror's Scourgestalker Handguards -- Gauntlets of the Wayward Protector
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 45642 LIMIT 1) as haxxorz), `parent_item_id` = 45642 WHERE `item_id` = 46148 AND `expansion_id` = 3; -- Conqueror's Siegebreaker Gauntlets -- Gauntlets of the Wayward Protector
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 45642 LIMIT 1) as haxxorz), `parent_item_id` = 45642 WHERE `item_id` = 46164 AND `expansion_id` = 3; -- Conqueror's Siegebreaker Handguards -- Gauntlets of the Wayward Protector
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 45642 LIMIT 1) as haxxorz), `parent_item_id` = 45642 WHERE `item_id` = 46207 AND `expansion_id` = 3; -- Conqueror's Worldbreaker Gloves -- Gauntlets of the Wayward Protector
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 45642 LIMIT 1) as haxxorz), `parent_item_id` = 45642 WHERE `item_id` = 46200 AND `expansion_id` = 3; -- Conqueror's Worldbreaker Grips -- Gauntlets of the Wayward Protector
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 45642 LIMIT 1) as haxxorz), `parent_item_id` = 45642 WHERE `item_id` = 46199 AND `expansion_id` = 3; -- Conqueror's Worldbreaker Handguards -- Gauntlets of the Wayward Protector
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 45643 LIMIT 1) as haxxorz), `parent_item_id` = 45643 WHERE `item_id` = 46113 AND `expansion_id` = 3; -- Conqueror's Darkruned Gauntlets -- Gauntlets of the Wayward Vanquisher
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 45643 LIMIT 1) as haxxorz), `parent_item_id` = 45643 WHERE `item_id` = 46119 AND `expansion_id` = 3; -- Conqueror's Darkruned Handguards -- Gauntlets of the Wayward Vanquisher
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 45643 LIMIT 1) as haxxorz), `parent_item_id` = 45643 WHERE `item_id` = 46132 AND `expansion_id` = 3; -- Conqueror's Kirin Tor Gauntlets -- Gauntlets of the Wayward Vanquisher
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 45643 LIMIT 1) as haxxorz), `parent_item_id` = 45643 WHERE `item_id` = 46189 AND `expansion_id` = 3; -- Conqueror's Nightsong Gloves -- Gauntlets of the Wayward Vanquisher
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 45643 LIMIT 1) as haxxorz), `parent_item_id` = 45643 WHERE `item_id` = 46158 AND `expansion_id` = 3; -- Conqueror's Nightsong Handgrips -- Gauntlets of the Wayward Vanquisher
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 45643 LIMIT 1) as haxxorz), `parent_item_id` = 45643 WHERE `item_id` = 46183 AND `expansion_id` = 3; -- Conqueror's Nightsong Handguards -- Gauntlets of the Wayward Vanquisher
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 45643 LIMIT 1) as haxxorz), `parent_item_id` = 45643 WHERE `item_id` = 46124 AND `expansion_id` = 3; -- Conqueror's Terrorblade Gauntlets -- Gauntlets of the Wayward Vanquisher
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 40613 LIMIT 1) as haxxorz), `parent_item_id` = 40613 WHERE `item_id` = 39519 AND `expansion_id` = 3; -- Heroes' Gloves of Faith -- Gloves of the Lost Conqueror
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 40613 LIMIT 1) as haxxorz), `parent_item_id` = 40613 WHERE `item_id` = 39530 AND `expansion_id` = 3; -- Heroes' Handwraps of Faith -- Gloves of the Lost Conqueror
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 40613 LIMIT 1) as haxxorz), `parent_item_id` = 40613 WHERE `item_id` = 39500 AND `expansion_id` = 3; -- Heroes' Plagueheart Gloves -- Gloves of the Lost Conqueror
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 40613 LIMIT 1) as haxxorz), `parent_item_id` = 40613 WHERE `item_id` = 39634 AND `expansion_id` = 3; -- Heroes' Redemption Gauntlets -- Gloves of the Lost Conqueror
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 40613 LIMIT 1) as haxxorz), `parent_item_id` = 40613 WHERE `item_id` = 39632 AND `expansion_id` = 3; -- Heroes' Redemption Gloves -- Gloves of the Lost Conqueror
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 40613 LIMIT 1) as haxxorz), `parent_item_id` = 40613 WHERE `item_id` = 39639 AND `expansion_id` = 3; -- Heroes' Redemption Handguards -- Gloves of the Lost Conqueror
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 40614 LIMIT 1) as haxxorz), `parent_item_id` = 40614 WHERE `item_id` = 39582 AND `expansion_id` = 3; -- Heroes' Cryptstalker Handguards -- Gloves of the Lost Protector
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 40614 LIMIT 1) as haxxorz), `parent_item_id` = 40614 WHERE `item_id` = 39609 AND `expansion_id` = 3; -- Heroes' Dreadnaught Gauntlets -- Gloves of the Lost Protector
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 40614 LIMIT 1) as haxxorz), `parent_item_id` = 40614 WHERE `item_id` = 39622 AND `expansion_id` = 3; -- Heroes' Dreadnaught Handguards -- Gloves of the Lost Protector
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 40614 LIMIT 1) as haxxorz), `parent_item_id` = 40614 WHERE `item_id` = 39593 AND `expansion_id` = 3; -- Heroes' Earthshatter Gloves -- Gloves of the Lost Protector
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 40614 LIMIT 1) as haxxorz), `parent_item_id` = 40614 WHERE `item_id` = 39601 AND `expansion_id` = 3; -- Heroes' Earthshatter Grips -- Gloves of the Lost Protector
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 40614 LIMIT 1) as haxxorz), `parent_item_id` = 40614 WHERE `item_id` = 39591 AND `expansion_id` = 3; -- Heroes' Earthshatter Handguards -- Gloves of the Lost Protector
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 40615 LIMIT 1) as haxxorz), `parent_item_id` = 40615 WHERE `item_id` = 39560 AND `expansion_id` = 3; -- Heroes' Bonescythe Gauntlets -- Gloves of the Lost Vanquisher
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 40615 LIMIT 1) as haxxorz), `parent_item_id` = 40615 WHERE `item_id` = 39544 AND `expansion_id` = 3; -- Heroes' Dreamwalker Gloves -- Gloves of the Lost Vanquisher
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 40615 LIMIT 1) as haxxorz), `parent_item_id` = 40615 WHERE `item_id` = 39557 AND `expansion_id` = 3; -- Heroes' Dreamwalker Handgrips -- Gloves of the Lost Vanquisher
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 40615 LIMIT 1) as haxxorz), `parent_item_id` = 40615 WHERE `item_id` = 39543 AND `expansion_id` = 3; -- Heroes' Dreamwalker Handguards -- Gloves of the Lost Vanquisher
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 40615 LIMIT 1) as haxxorz), `parent_item_id` = 40615 WHERE `item_id` = 39495 AND `expansion_id` = 3; -- Heroes' Frostfire Gloves -- Gloves of the Lost Vanquisher
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 40615 LIMIT 1) as haxxorz), `parent_item_id` = 40615 WHERE `item_id` = 39618 AND `expansion_id` = 3; -- Heroes' Scourgeborne Gauntlets -- Gloves of the Lost Vanquisher
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 40615 LIMIT 1) as haxxorz), `parent_item_id` = 40615 WHERE `item_id` = 39624 AND `expansion_id` = 3; -- Heroes' Scourgeborne Handguards -- Gloves of the Lost Vanquisher
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 45644 LIMIT 1) as haxxorz), `parent_item_id` = 45644 WHERE `item_id` = 45376 AND `expansion_id` = 3; -- Valorous Aegis Gauntlets -- Gloves of the Wayward Conqueror
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 45644 LIMIT 1) as haxxorz), `parent_item_id` = 45644 WHERE `item_id` = 45370 AND `expansion_id` = 3; -- Valorous Aegis Gloves -- Gloves of the Wayward Conqueror
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 45644 LIMIT 1) as haxxorz), `parent_item_id` = 45644 WHERE `item_id` = 45383 AND `expansion_id` = 3; -- Valorous Aegis Handguards -- Gloves of the Wayward Conqueror
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 45644 LIMIT 1) as haxxorz), `parent_item_id` = 45644 WHERE `item_id` = 45419 AND `expansion_id` = 3; -- Valorous Deathbringer Gloves -- Gloves of the Wayward Conqueror
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 45644 LIMIT 1) as haxxorz), `parent_item_id` = 45644 WHERE `item_id` = 45387 AND `expansion_id` = 3; -- Valorous Gloves of Sanctification -- Gloves of the Wayward Conqueror
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 45644 LIMIT 1) as haxxorz), `parent_item_id` = 45644 WHERE `item_id` = 45392 AND `expansion_id` = 3; -- Valorous Handwraps of Sanctification -- Gloves of the Wayward Conqueror
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 45645 LIMIT 1) as haxxorz), `parent_item_id` = 45645 WHERE `item_id` = 45360 AND `expansion_id` = 3; -- Valorous Scourgestalker Handguards -- Gloves of the Wayward Protector
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 45645 LIMIT 1) as haxxorz), `parent_item_id` = 45645 WHERE `item_id` = 45430 AND `expansion_id` = 3; -- Valorous Siegebreaker Gauntlets -- Gloves of the Wayward Protector
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 45645 LIMIT 1) as haxxorz), `parent_item_id` = 45645 WHERE `item_id` = 45426 AND `expansion_id` = 3; -- Valorous Siegebreaker Handguards -- Gloves of the Wayward Protector
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 45645 LIMIT 1) as haxxorz), `parent_item_id` = 45645 WHERE `item_id` = 45406 AND `expansion_id` = 3; -- Valorous Worldbreaker Gloves -- Gloves of the Wayward Protector
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 45645 LIMIT 1) as haxxorz), `parent_item_id` = 45645 WHERE `item_id` = 45414 AND `expansion_id` = 3; -- Valorous Worldbreaker Grips -- Gloves of the Wayward Protector
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 45645 LIMIT 1) as haxxorz), `parent_item_id` = 45645 WHERE `item_id` = 45401 AND `expansion_id` = 3; -- Valorous Worldbreaker Handguards -- Gloves of the Wayward Protector
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 45646 LIMIT 1) as haxxorz), `parent_item_id` = 45646 WHERE `item_id` = 45341 AND `expansion_id` = 3; -- Valorous Darkruned Gauntlets -- Gloves of the Wayward Vanquisher
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 45646 LIMIT 1) as haxxorz), `parent_item_id` = 45646 WHERE `item_id` = 45337 AND `expansion_id` = 3; -- Valorous Darkruned Handguards -- Gloves of the Wayward Vanquisher
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 45646 LIMIT 1) as haxxorz), `parent_item_id` = 45646 WHERE `item_id` = 46131 AND `expansion_id` = 3; -- Valorous Kirin Tor Gauntlets -- Gloves of the Wayward Vanquisher
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 45646 LIMIT 1) as haxxorz), `parent_item_id` = 45646 WHERE `item_id` = 45351 AND `expansion_id` = 3; -- Valorous Nightsong Gloves -- Gloves of the Wayward Vanquisher
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 45646 LIMIT 1) as haxxorz), `parent_item_id` = 45646 WHERE `item_id` = 45355 AND `expansion_id` = 3; -- Valorous Nightsong Handgrips -- Gloves of the Wayward Vanquisher
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 45646 LIMIT 1) as haxxorz), `parent_item_id` = 45646 WHERE `item_id` = 45345 AND `expansion_id` = 3; -- Valorous Nightsong Handguards -- Gloves of the Wayward Vanquisher
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 45646 LIMIT 1) as haxxorz), `parent_item_id` = 45646 WHERE `item_id` = 45397 AND `expansion_id` = 3; -- Valorous Terrorblade Gauntlets -- Gloves of the Wayward Vanquisher
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 40616 LIMIT 1) as haxxorz), `parent_item_id` = 40616 WHERE `item_id` = 39521 AND `expansion_id` = 3; -- Heroes' Circlet of Faith -- Helm of the Lost Conqueror
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 40616 LIMIT 1) as haxxorz), `parent_item_id` = 40616 WHERE `item_id` = 39514 AND `expansion_id` = 3; -- Heroes' Crown of Faith -- Helm of the Lost Conqueror
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 40616 LIMIT 1) as haxxorz), `parent_item_id` = 40616 WHERE `item_id` = 39496 AND `expansion_id` = 3; -- Heroes' Plagueheart Circlet -- Helm of the Lost Conqueror
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 40616 LIMIT 1) as haxxorz), `parent_item_id` = 40616 WHERE `item_id` = 39640 AND `expansion_id` = 3; -- Heroes' Redemption Faceguard -- Helm of the Lost Conqueror
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 40616 LIMIT 1) as haxxorz), `parent_item_id` = 40616 WHERE `item_id` = 39628 AND `expansion_id` = 3; -- Heroes' Redemption Headpiece -- Helm of the Lost Conqueror
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 40616 LIMIT 1) as haxxorz), `parent_item_id` = 40616 WHERE `item_id` = 39635 AND `expansion_id` = 3; -- Heroes' Redemption Helm -- Helm of the Lost Conqueror
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 40617 LIMIT 1) as haxxorz), `parent_item_id` = 40617 WHERE `item_id` = 39578 AND `expansion_id` = 3; -- Heroes' Cryptstalker Headpiece -- Helm of the Lost Protector
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 40617 LIMIT 1) as haxxorz), `parent_item_id` = 40617 WHERE `item_id` = 39610 AND `expansion_id` = 3; -- Heroes' Dreadnaught Greathelm -- Helm of the Lost Protector
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 40617 LIMIT 1) as haxxorz), `parent_item_id` = 40617 WHERE `item_id` = 39605 AND `expansion_id` = 3; -- Heroes' Dreadnaught Helmet -- Helm of the Lost Protector
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 40617 LIMIT 1) as haxxorz), `parent_item_id` = 40617 WHERE `item_id` = 39602 AND `expansion_id` = 3; -- Heroes' Earthshatter Faceguard -- Helm of the Lost Protector
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 40617 LIMIT 1) as haxxorz), `parent_item_id` = 40617 WHERE `item_id` = 39583 AND `expansion_id` = 3; -- Heroes' Earthshatter Headpiece -- Helm of the Lost Protector
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 40617 LIMIT 1) as haxxorz), `parent_item_id` = 40617 WHERE `item_id` = 39594 AND `expansion_id` = 3; -- Heroes' Earthshatter Helm -- Helm of the Lost Protector
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 40618 LIMIT 1) as haxxorz), `parent_item_id` = 40618 WHERE `item_id` = 39561 AND `expansion_id` = 3; -- Heroes' Bonescythe Helmet -- Helm of the Lost Vanquisher
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 40618 LIMIT 1) as haxxorz), `parent_item_id` = 40618 WHERE `item_id` = 39545 AND `expansion_id` = 3; -- Heroes' Dreamwalker Cover -- Helm of the Lost Vanquisher
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 40618 LIMIT 1) as haxxorz), `parent_item_id` = 40618 WHERE `item_id` = 39553 AND `expansion_id` = 3; -- Heroes' Dreamwalker Headguard -- Helm of the Lost Vanquisher
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 40618 LIMIT 1) as haxxorz), `parent_item_id` = 40618 WHERE `item_id` = 39531 AND `expansion_id` = 3; -- Heroes' Dreamwalker Headpiece -- Helm of the Lost Vanquisher
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 40618 LIMIT 1) as haxxorz), `parent_item_id` = 40618 WHERE `item_id` = 39491 AND `expansion_id` = 3; -- Heroes' Frostfire Circlet -- Helm of the Lost Vanquisher
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 40618 LIMIT 1) as haxxorz), `parent_item_id` = 40618 WHERE `item_id` = 39625 AND `expansion_id` = 3; -- Heroes' Scourgeborne Faceguard -- Helm of the Lost Vanquisher
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 40618 LIMIT 1) as haxxorz), `parent_item_id` = 40618 WHERE `item_id` = 39619 AND `expansion_id` = 3; -- Heroes' Scourgeborne Helmet -- Helm of the Lost Vanquisher
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 45647 LIMIT 1) as haxxorz), `parent_item_id` = 45647 WHERE `item_id` = 45382 AND `expansion_id` = 3; -- Valorous Aegis Faceguard -- Helm of the Wayward Conqueror
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 45647 LIMIT 1) as haxxorz), `parent_item_id` = 45647 WHERE `item_id` = 45372 AND `expansion_id` = 3; -- Valorous Aegis Headpiece -- Helm of the Wayward Conqueror
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 45647 LIMIT 1) as haxxorz), `parent_item_id` = 45647 WHERE `item_id` = 45377 AND `expansion_id` = 3; -- Valorous Aegis Helm -- Helm of the Wayward Conqueror
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 45647 LIMIT 1) as haxxorz), `parent_item_id` = 45647 WHERE `item_id` = 45391 AND `expansion_id` = 3; -- Valorous Circlet of Sanctification -- Helm of the Wayward Conqueror
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 45647 LIMIT 1) as haxxorz), `parent_item_id` = 45647 WHERE `item_id` = 45386 AND `expansion_id` = 3; -- Valorous Cowl of Sanctification -- Helm of the Wayward Conqueror
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 45647 LIMIT 1) as haxxorz), `parent_item_id` = 45647 WHERE `item_id` = 45417 AND `expansion_id` = 3; -- Valorous Deathbringer Hood -- Helm of the Wayward Conqueror
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 45648 LIMIT 1) as haxxorz), `parent_item_id` = 45648 WHERE `item_id` = 45361 AND `expansion_id` = 3; -- Valorous Scourgestalker Headpiece -- Helm of the Wayward Protector
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 45648 LIMIT 1) as haxxorz), `parent_item_id` = 45648 WHERE `item_id` = 45425 AND `expansion_id` = 3; -- Valorous Siegebreaker Greathelm -- Helm of the Wayward Protector
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 45648 LIMIT 1) as haxxorz), `parent_item_id` = 45648 WHERE `item_id` = 45431 AND `expansion_id` = 3; -- Valorous Siegebreaker Helmet -- Helm of the Wayward Protector
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 45648 LIMIT 1) as haxxorz), `parent_item_id` = 45648 WHERE `item_id` = 45412 AND `expansion_id` = 3; -- Valorous Worldbreaker Faceguard -- Helm of the Wayward Protector
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 45648 LIMIT 1) as haxxorz), `parent_item_id` = 45648 WHERE `item_id` = 45402 AND `expansion_id` = 3; -- Valorous Worldbreaker Headpiece -- Helm of the Wayward Protector
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 45648 LIMIT 1) as haxxorz), `parent_item_id` = 45648 WHERE `item_id` = 45408 AND `expansion_id` = 3; -- Valorous Worldbreaker Helm -- Helm of the Wayward Protector
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 45649 LIMIT 1) as haxxorz), `parent_item_id` = 45649 WHERE `item_id` = 45336 AND `expansion_id` = 3; -- Valorous Darkruned Faceguard -- Helm of the Wayward Vanquisher
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 45649 LIMIT 1) as haxxorz), `parent_item_id` = 45649 WHERE `item_id` = 45342 AND `expansion_id` = 3; -- Valorous Darkruned Helmet -- Helm of the Wayward Vanquisher
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 45649 LIMIT 1) as haxxorz), `parent_item_id` = 45649 WHERE `item_id` = 45365 AND `expansion_id` = 3; -- Valorous Kirin Tor Hood -- Helm of the Wayward Vanquisher
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 45649 LIMIT 1) as haxxorz), `parent_item_id` = 45649 WHERE `item_id` = 46313 AND `expansion_id` = 3; -- Valorous Nightsong Cover -- Helm of the Wayward Vanquisher
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 45649 LIMIT 1) as haxxorz), `parent_item_id` = 45649 WHERE `item_id` = 45356 AND `expansion_id` = 3; -- Valorous Nightsong Headguard -- Helm of the Wayward Vanquisher
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 45649 LIMIT 1) as haxxorz), `parent_item_id` = 45649 WHERE `item_id` = 45346 AND `expansion_id` = 3; -- Valorous Nightsong Headpiece -- Helm of the Wayward Vanquisher
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 45649 LIMIT 1) as haxxorz), `parent_item_id` = 45649 WHERE `item_id` = 45398 AND `expansion_id` = 3; -- Valorous Terrorblade Helmet -- Helm of the Wayward Vanquisher
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 40619 LIMIT 1) as haxxorz), `parent_item_id` = 40619 WHERE `item_id` = 39517 AND `expansion_id` = 3; -- Heroes' Leggings of Faith -- Leggings of the Lost Conqueror
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 40619 LIMIT 1) as haxxorz), `parent_item_id` = 40619 WHERE `item_id` = 39528 AND `expansion_id` = 3; -- Heroes' Pants of Faith -- Leggings of the Lost Conqueror
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 40619 LIMIT 1) as haxxorz), `parent_item_id` = 40619 WHERE `item_id` = 39498 AND `expansion_id` = 3; -- Heroes' Plagueheart Leggings -- Leggings of the Lost Conqueror
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 40619 LIMIT 1) as haxxorz), `parent_item_id` = 40619 WHERE `item_id` = 39630 AND `expansion_id` = 3; -- Heroes' Redemption Greaves -- Leggings of the Lost Conqueror
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 40619 LIMIT 1) as haxxorz), `parent_item_id` = 40619 WHERE `item_id` = 39641 AND `expansion_id` = 3; -- Heroes' Redemption Legguards -- Leggings of the Lost Conqueror
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 40619 LIMIT 1) as haxxorz), `parent_item_id` = 40619 WHERE `item_id` = 39636 AND `expansion_id` = 3; -- Heroes' Redemption Legplates -- Leggings of the Lost Conqueror
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 40620 LIMIT 1) as haxxorz), `parent_item_id` = 40620 WHERE `item_id` = 39580 AND `expansion_id` = 3; -- Heroes' Cryptstalker Legguards -- Leggings of the Lost Protector
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 40620 LIMIT 1) as haxxorz), `parent_item_id` = 40620 WHERE `item_id` = 39612 AND `expansion_id` = 3; -- Heroes' Dreadnaught Legguards -- Leggings of the Lost Protector
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 40620 LIMIT 1) as haxxorz), `parent_item_id` = 40620 WHERE `item_id` = 39607 AND `expansion_id` = 3; -- Heroes' Dreadnaught Legplates -- Leggings of the Lost Protector
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 40620 LIMIT 1) as haxxorz), `parent_item_id` = 40620 WHERE `item_id` = 39595 AND `expansion_id` = 3; -- Heroes' Earthshatter Kilt -- Leggings of the Lost Protector
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 40620 LIMIT 1) as haxxorz), `parent_item_id` = 40620 WHERE `item_id` = 39589 AND `expansion_id` = 3; -- Heroes' Earthshatter Legguards -- Leggings of the Lost Protector
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 40620 LIMIT 1) as haxxorz), `parent_item_id` = 40620 WHERE `item_id` = 39603 AND `expansion_id` = 3; -- Heroes' Earthshatter War-Kilt -- Leggings of the Lost Protector
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 40621 LIMIT 1) as haxxorz), `parent_item_id` = 40621 WHERE `item_id` = 39564 AND `expansion_id` = 3; -- Heroes' Bonescythe Legplates -- Leggings of the Lost Vanquisher
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 40621 LIMIT 1) as haxxorz), `parent_item_id` = 40621 WHERE `item_id` = 39539 AND `expansion_id` = 3; -- Heroes' Dreamwalker Leggings -- Leggings of the Lost Vanquisher
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 40621 LIMIT 1) as haxxorz), `parent_item_id` = 40621 WHERE `item_id` = 39555 AND `expansion_id` = 3; -- Heroes' Dreamwalker Legguards -- Leggings of the Lost Vanquisher
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 40621 LIMIT 1) as haxxorz), `parent_item_id` = 40621 WHERE `item_id` = 39546 AND `expansion_id` = 3; -- Heroes' Dreamwalker Trousers -- Leggings of the Lost Vanquisher
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 40621 LIMIT 1) as haxxorz), `parent_item_id` = 40621 WHERE `item_id` = 39493 AND `expansion_id` = 3; -- Heroes' Frostfire Leggings -- Leggings of the Lost Vanquisher
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 40621 LIMIT 1) as haxxorz), `parent_item_id` = 40621 WHERE `item_id` = 39626 AND `expansion_id` = 3; -- Heroes' Scourgeborne Legguards -- Leggings of the Lost Vanquisher
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 40621 LIMIT 1) as haxxorz), `parent_item_id` = 40621 WHERE `item_id` = 39620 AND `expansion_id` = 3; -- Heroes' Scourgeborne Legplates -- Leggings of the Lost Vanquisher
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 45650 LIMIT 1) as haxxorz), `parent_item_id` = 45650 WHERE `item_id` = 45371 AND `expansion_id` = 3; -- Valorous Aegis Greaves -- Leggings of the Wayward Conqueror
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 45650 LIMIT 1) as haxxorz), `parent_item_id` = 45650 WHERE `item_id` = 45384 AND `expansion_id` = 3; -- Valorous Aegis Legguards -- Leggings of the Wayward Conqueror
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 45650 LIMIT 1) as haxxorz), `parent_item_id` = 45650 WHERE `item_id` = 45379 AND `expansion_id` = 3; -- Valorous Aegis Legplates -- Leggings of the Wayward Conqueror
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 45650 LIMIT 1) as haxxorz), `parent_item_id` = 45650 WHERE `item_id` = 45420 AND `expansion_id` = 3; -- Valorous Deathbringer Leggings -- Leggings of the Wayward Conqueror
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 45650 LIMIT 1) as haxxorz), `parent_item_id` = 45650 WHERE `item_id` = 45388 AND `expansion_id` = 3; -- Valorous Leggings of Sanctification -- Leggings of the Wayward Conqueror
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 45650 LIMIT 1) as haxxorz), `parent_item_id` = 45650 WHERE `item_id` = 45394 AND `expansion_id` = 3; -- Valorous Pants of Sanctification -- Leggings of the Wayward Conqueror
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 45651 LIMIT 1) as haxxorz), `parent_item_id` = 45651 WHERE `item_id` = 45362 AND `expansion_id` = 3; -- Valorous Scourgestalker Legguards -- Leggings of the Wayward Protector
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 45651 LIMIT 1) as haxxorz), `parent_item_id` = 45651 WHERE `item_id` = 45427 AND `expansion_id` = 3; -- Valorous Siegebreaker Legguards -- Leggings of the Wayward Protector
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 45651 LIMIT 1) as haxxorz), `parent_item_id` = 45651 WHERE `item_id` = 45432 AND `expansion_id` = 3; -- Valorous Siegebreaker Legplates -- Leggings of the Wayward Protector
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 45651 LIMIT 1) as haxxorz), `parent_item_id` = 45651 WHERE `item_id` = 45409 AND `expansion_id` = 3; -- Valorous Worldbreaker Kilt -- Leggings of the Wayward Protector
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 45651 LIMIT 1) as haxxorz), `parent_item_id` = 45651 WHERE `item_id` = 45403 AND `expansion_id` = 3; -- Valorous Worldbreaker Legguards -- Leggings of the Wayward Protector
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 45651 LIMIT 1) as haxxorz), `parent_item_id` = 45651 WHERE `item_id` = 45416 AND `expansion_id` = 3; -- Valorous Worldbreaker War-Kilt -- Leggings of the Wayward Protector
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 45652 LIMIT 1) as haxxorz), `parent_item_id` = 45652 WHERE `item_id` = 45338 AND `expansion_id` = 3; -- Valorous Darkruned Legguards -- Leggings of the Wayward Vanquisher
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 45652 LIMIT 1) as haxxorz), `parent_item_id` = 45652 WHERE `item_id` = 45343 AND `expansion_id` = 3; -- Valorous Darkruned Legplates -- Leggings of the Wayward Vanquisher
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 45652 LIMIT 1) as haxxorz), `parent_item_id` = 45652 WHERE `item_id` = 45367 AND `expansion_id` = 3; -- Valorous Kirin Tor Leggings -- Leggings of the Wayward Vanquisher
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 45652 LIMIT 1) as haxxorz), `parent_item_id` = 45652 WHERE `item_id` = 45347 AND `expansion_id` = 3; -- Valorous Nightsong Leggings -- Leggings of the Wayward Vanquisher
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 45652 LIMIT 1) as haxxorz), `parent_item_id` = 45652 WHERE `item_id` = 45357 AND `expansion_id` = 3; -- Valorous Nightsong Legguards -- Leggings of the Wayward Vanquisher
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 45652 LIMIT 1) as haxxorz), `parent_item_id` = 45652 WHERE `item_id` = 45353 AND `expansion_id` = 3; -- Valorous Nightsong Trousers -- Leggings of the Wayward Vanquisher
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 45652 LIMIT 1) as haxxorz), `parent_item_id` = 45652 WHERE `item_id` = 45399 AND `expansion_id` = 3; -- Valorous Terrorblade Legplates -- Leggings of the Wayward Vanquisher
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 40634 LIMIT 1) as haxxorz), `parent_item_id` = 40634 WHERE `item_id` = 40448 AND `expansion_id` = 3; -- Valorous Leggings of Faith -- Legplates of the Lost Conqueror
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 40634 LIMIT 1) as haxxorz), `parent_item_id` = 40634 WHERE `item_id` = 40457 AND `expansion_id` = 3; -- Valorous Pants of Faith -- Legplates of the Lost Conqueror
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 40634 LIMIT 1) as haxxorz), `parent_item_id` = 40634 WHERE `item_id` = 40422 AND `expansion_id` = 3; -- Valorous Plagueheart Leggings -- Legplates of the Lost Conqueror
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 40634 LIMIT 1) as haxxorz), `parent_item_id` = 40634 WHERE `item_id` = 40572 AND `expansion_id` = 3; -- Valorous Redemption Greaves -- Legplates of the Lost Conqueror
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 40634 LIMIT 1) as haxxorz), `parent_item_id` = 40634 WHERE `item_id` = 40583 AND `expansion_id` = 3; -- Valorous Redemption Legguards -- Legplates of the Lost Conqueror
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 40634 LIMIT 1) as haxxorz), `parent_item_id` = 40634 WHERE `item_id` = 40577 AND `expansion_id` = 3; -- Valorous Redemption Legplates -- Legplates of the Lost Conqueror
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 40635 LIMIT 1) as haxxorz), `parent_item_id` = 40635 WHERE `item_id` = 40506 AND `expansion_id` = 3; -- Valorous Cryptstalker Legguards -- Legplates of the Lost Protector
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 40635 LIMIT 1) as haxxorz), `parent_item_id` = 40635 WHERE `item_id` = 40547 AND `expansion_id` = 3; -- Valorous Dreadnaught Legguards -- Legplates of the Lost Protector
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 40635 LIMIT 1) as haxxorz), `parent_item_id` = 40635 WHERE `item_id` = 40529 AND `expansion_id` = 3; -- Valorous Dreadnaught Legplates -- Legplates of the Lost Protector
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 40635 LIMIT 1) as haxxorz), `parent_item_id` = 40635 WHERE `item_id` = 40517 AND `expansion_id` = 3; -- Valorous Earthshatter Kilt -- Legplates of the Lost Protector
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 40635 LIMIT 1) as haxxorz), `parent_item_id` = 40635 WHERE `item_id` = 40512 AND `expansion_id` = 3; -- Valorous Earthshatter Legguards -- Legplates of the Lost Protector
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 40635 LIMIT 1) as haxxorz), `parent_item_id` = 40635 WHERE `item_id` = 40522 AND `expansion_id` = 3; -- Valorous Earthshatter War-Kilt -- Legplates of the Lost Protector
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 40636 LIMIT 1) as haxxorz), `parent_item_id` = 40636 WHERE `item_id` = 40500 AND `expansion_id` = 3; -- Valorous Bonescythe Legplates -- Legplates of the Lost Vanquisher
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 40636 LIMIT 1) as haxxorz), `parent_item_id` = 40636 WHERE `item_id` = 40462 AND `expansion_id` = 3; -- Valorous Dreamwalker Leggings -- Legplates of the Lost Vanquisher
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 40636 LIMIT 1) as haxxorz), `parent_item_id` = 40636 WHERE `item_id` = 40493 AND `expansion_id` = 3; -- Valorous Dreamwalker Legguards -- Legplates of the Lost Vanquisher
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 40636 LIMIT 1) as haxxorz), `parent_item_id` = 40636 WHERE `item_id` = 40468 AND `expansion_id` = 3; -- Valorous Dreamwalker Trousers -- Legplates of the Lost Vanquisher
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 40636 LIMIT 1) as haxxorz), `parent_item_id` = 40636 WHERE `item_id` = 40417 AND `expansion_id` = 3; -- Valorous Frostfire Leggings -- Legplates of the Lost Vanquisher
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 40636 LIMIT 1) as haxxorz), `parent_item_id` = 40636 WHERE `item_id` = 40567 AND `expansion_id` = 3; -- Valorous Scourgeborne Legguards -- Legplates of the Lost Vanquisher
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 40636 LIMIT 1) as haxxorz), `parent_item_id` = 40636 WHERE `item_id` = 40556 AND `expansion_id` = 3; -- Valorous Scourgeborne Legplates -- Legplates of the Lost Vanquisher
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 45653 LIMIT 1) as haxxorz), `parent_item_id` = 45653 WHERE `item_id` = 46181 AND `expansion_id` = 3; -- Conqueror's Aegis Greaves -- Legplates of the Wayward Conqueror
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 45653 LIMIT 1) as haxxorz), `parent_item_id` = 45653 WHERE `item_id` = 46176 AND `expansion_id` = 3; -- Conqueror's Aegis Legguards -- Legplates of the Wayward Conqueror
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 45653 LIMIT 1) as haxxorz), `parent_item_id` = 45653 WHERE `item_id` = 46153 AND `expansion_id` = 3; -- Conqueror's Aegis Legplates -- Legplates of the Wayward Conqueror
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 45653 LIMIT 1) as haxxorz), `parent_item_id` = 45653 WHERE `item_id` = 46139 AND `expansion_id` = 3; -- Conqueror's Deathbringer Leggings -- Legplates of the Wayward Conqueror
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 45653 LIMIT 1) as haxxorz), `parent_item_id` = 45653 WHERE `item_id` = 46195 AND `expansion_id` = 3; -- Conqueror's Leggings of Sanctification -- Legplates of the Wayward Conqueror
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 45653 LIMIT 1) as haxxorz), `parent_item_id` = 45653 WHERE `item_id` = 46170 AND `expansion_id` = 3; -- Conqueror's Pants of Sanctification -- Legplates of the Wayward Conqueror
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 45654 LIMIT 1) as haxxorz), `parent_item_id` = 45654 WHERE `item_id` = 46144 AND `expansion_id` = 3; -- Conqueror's Scourgestalker Legguards -- Legplates of the Wayward Protector
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 45654 LIMIT 1) as haxxorz), `parent_item_id` = 45654 WHERE `item_id` = 46169 AND `expansion_id` = 3; -- Conqueror's Siegebreaker Legguards -- Legplates of the Wayward Protector
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 45654 LIMIT 1) as haxxorz), `parent_item_id` = 45654 WHERE `item_id` = 46150 AND `expansion_id` = 3; -- Conqueror's Siegebreaker Legplates -- Legplates of the Wayward Protector
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 45654 LIMIT 1) as haxxorz), `parent_item_id` = 45654 WHERE `item_id` = 46210 AND `expansion_id` = 3; -- Conqueror's Worldbreaker Kilt -- Legplates of the Wayward Protector
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 45654 LIMIT 1) as haxxorz), `parent_item_id` = 45654 WHERE `item_id` = 46202 AND `expansion_id` = 3; -- Conqueror's Worldbreaker Legguards -- Legplates of the Wayward Protector
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 45654 LIMIT 1) as haxxorz), `parent_item_id` = 45654 WHERE `item_id` = 46208 AND `expansion_id` = 3; -- Conqueror's Worldbreaker War-Kilt -- Legplates of the Wayward Protector
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 45655 LIMIT 1) as haxxorz), `parent_item_id` = 45655 WHERE `item_id` = 46121 AND `expansion_id` = 3; -- Conqueror's Darkruned Legguards -- Legplates of the Wayward Vanquisher
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 45655 LIMIT 1) as haxxorz), `parent_item_id` = 45655 WHERE `item_id` = 46116 AND `expansion_id` = 3; -- Conqueror's Darkruned Legplates -- Legplates of the Wayward Vanquisher
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 45655 LIMIT 1) as haxxorz), `parent_item_id` = 45655 WHERE `item_id` = 46133 AND `expansion_id` = 3; -- Conqueror's Kirin Tor Leggings -- Legplates of the Wayward Vanquisher
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 45655 LIMIT 1) as haxxorz), `parent_item_id` = 45655 WHERE `item_id` = 46185 AND `expansion_id` = 3; -- Conqueror's Nightsong Leggings -- Legplates of the Wayward Vanquisher
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 45655 LIMIT 1) as haxxorz), `parent_item_id` = 45655 WHERE `item_id` = 46160 AND `expansion_id` = 3; -- Conqueror's Nightsong Legguards -- Legplates of the Wayward Vanquisher
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 45655 LIMIT 1) as haxxorz), `parent_item_id` = 45655 WHERE `item_id` = 46192 AND `expansion_id` = 3; -- Conqueror's Nightsong Trousers -- Legplates of the Wayward Vanquisher
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 45655 LIMIT 1) as haxxorz), `parent_item_id` = 45655 WHERE `item_id` = 46126 AND `expansion_id` = 3; -- Conqueror's Terrorblade Legplates -- Legplates of the Wayward Vanquisher
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 40637 LIMIT 1) as haxxorz), `parent_item_id` = 40637 WHERE `item_id` = 40459 AND `expansion_id` = 3; -- Valorous Mantle of Faith -- Mantle of the Lost Conqueror
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 40637 LIMIT 1) as haxxorz), `parent_item_id` = 40637 WHERE `item_id` = 40424 AND `expansion_id` = 3; -- Valorous Plagueheart Shoulderpads -- Mantle of the Lost Conqueror
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 40637 LIMIT 1) as haxxorz), `parent_item_id` = 40637 WHERE `item_id` = 40584 AND `expansion_id` = 3; -- Valorous Redemption Shoulderguards -- Mantle of the Lost Conqueror
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 40637 LIMIT 1) as haxxorz), `parent_item_id` = 40637 WHERE `item_id` = 40578 AND `expansion_id` = 3; -- Valorous Redemption Shoulderplates -- Mantle of the Lost Conqueror
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 40637 LIMIT 1) as haxxorz), `parent_item_id` = 40637 WHERE `item_id` = 40573 AND `expansion_id` = 3; -- Valorous Redemption Spaulders -- Mantle of the Lost Conqueror
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 40637 LIMIT 1) as haxxorz), `parent_item_id` = 40637 WHERE `item_id` = 40450 AND `expansion_id` = 3; -- Valorous Shoulderpads of Faith -- Mantle of the Lost Conqueror
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 40638 LIMIT 1) as haxxorz), `parent_item_id` = 40638 WHERE `item_id` = 40507 AND `expansion_id` = 3; -- Valorous Cryptstalker Spaulders -- Mantle of the Lost Protector
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 40638 LIMIT 1) as haxxorz), `parent_item_id` = 40638 WHERE `item_id` = 40548 AND `expansion_id` = 3; -- Valorous Dreadnaught Pauldrons -- Mantle of the Lost Protector
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 40638 LIMIT 1) as haxxorz), `parent_item_id` = 40638 WHERE `item_id` = 40530 AND `expansion_id` = 3; -- Valorous Dreadnaught Shoulderplates -- Mantle of the Lost Protector
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 40638 LIMIT 1) as haxxorz), `parent_item_id` = 40638 WHERE `item_id` = 40524 AND `expansion_id` = 3; -- Valorous Earthshatter Shoulderguards -- Mantle of the Lost Protector
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 40638 LIMIT 1) as haxxorz), `parent_item_id` = 40638 WHERE `item_id` = 40518 AND `expansion_id` = 3; -- Valorous Earthshatter Shoulderpads -- Mantle of the Lost Protector
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 40638 LIMIT 1) as haxxorz), `parent_item_id` = 40638 WHERE `item_id` = 40513 AND `expansion_id` = 3; -- Valorous Earthshatter Spaulders -- Mantle of the Lost Protector
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 40639 LIMIT 1) as haxxorz), `parent_item_id` = 40639 WHERE `item_id` = 40502 AND `expansion_id` = 3; -- Valorous Bonescythe Pauldrons -- Mantle of the Lost Vanquisher
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 40639 LIMIT 1) as haxxorz), `parent_item_id` = 40639 WHERE `item_id` = 40470 AND `expansion_id` = 3; -- Valorous Dreamwalker Mantle -- Mantle of the Lost Vanquisher
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 40639 LIMIT 1) as haxxorz), `parent_item_id` = 40639 WHERE `item_id` = 40494 AND `expansion_id` = 3; -- Valorous Dreamwalker Shoulderpads -- Mantle of the Lost Vanquisher
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 40639 LIMIT 1) as haxxorz), `parent_item_id` = 40639 WHERE `item_id` = 40465 AND `expansion_id` = 3; -- Valorous Dreamwalker Spaulders -- Mantle of the Lost Vanquisher
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 40639 LIMIT 1) as haxxorz), `parent_item_id` = 40639 WHERE `item_id` = 40419 AND `expansion_id` = 3; -- Valorous Frostfire Shoulderpads -- Mantle of the Lost Vanquisher
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 40639 LIMIT 1) as haxxorz), `parent_item_id` = 40639 WHERE `item_id` = 40568 AND `expansion_id` = 3; -- Valorous Scourgeborne Pauldrons -- Mantle of the Lost Vanquisher
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 40639 LIMIT 1) as haxxorz), `parent_item_id` = 40639 WHERE `item_id` = 40557 AND `expansion_id` = 3; -- Valorous Scourgeborne Shoulderplates -- Mantle of the Lost Vanquisher
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 45656 LIMIT 1) as haxxorz), `parent_item_id` = 45656 WHERE `item_id` = 46177 AND `expansion_id` = 3; -- Conqueror's Aegis Shoulderguards -- Mantle of the Wayward Conqueror
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 45656 LIMIT 1) as haxxorz), `parent_item_id` = 45656 WHERE `item_id` = 46152 AND `expansion_id` = 3; -- Conqueror's Aegis Shoulderplates -- Mantle of the Wayward Conqueror
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 45656 LIMIT 1) as haxxorz), `parent_item_id` = 45656 WHERE `item_id` = 46182 AND `expansion_id` = 3; -- Conqueror's Aegis Spaulders -- Mantle of the Wayward Conqueror
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 45656 LIMIT 1) as haxxorz), `parent_item_id` = 45656 WHERE `item_id` = 46136 AND `expansion_id` = 3; -- Conqueror's Deathbringer Shoulderpads -- Mantle of the Wayward Conqueror
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 45656 LIMIT 1) as haxxorz), `parent_item_id` = 45656 WHERE `item_id` = 46165 AND `expansion_id` = 3; -- Conqueror's Mantle of Sanctification -- Mantle of the Wayward Conqueror
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 45656 LIMIT 1) as haxxorz), `parent_item_id` = 45656 WHERE `item_id` = 46190 AND `expansion_id` = 3; -- Conqueror's Shoulderpads of Sanctification -- Mantle of the Wayward Conqueror
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 45657 LIMIT 1) as haxxorz), `parent_item_id` = 45657 WHERE `item_id` = 46145 AND `expansion_id` = 3; -- Conqueror's Scourgestalker Spaulders -- Mantle of the Wayward Protector
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 45657 LIMIT 1) as haxxorz), `parent_item_id` = 45657 WHERE `item_id` = 46167 AND `expansion_id` = 3; -- Conqueror's Siegebreaker Pauldrons -- Mantle of the Wayward Protector
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 45657 LIMIT 1) as haxxorz), `parent_item_id` = 45657 WHERE `item_id` = 46149 AND `expansion_id` = 3; -- Conqueror's Siegebreaker Shoulderplates -- Mantle of the Wayward Protector
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 45657 LIMIT 1) as haxxorz), `parent_item_id` = 45657 WHERE `item_id` = 46203 AND `expansion_id` = 3; -- Conqueror's Worldbreaker Shoulderguards -- Mantle of the Wayward Protector
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 45657 LIMIT 1) as haxxorz), `parent_item_id` = 45657 WHERE `item_id` = 46211 AND `expansion_id` = 3; -- Conqueror's Worldbreaker Shoulderpads -- Mantle of the Wayward Protector
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 45657 LIMIT 1) as haxxorz), `parent_item_id` = 45657 WHERE `item_id` = 46204 AND `expansion_id` = 3; -- Conqueror's Worldbreaker Spaulders -- Mantle of the Wayward Protector
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 45658 LIMIT 1) as haxxorz), `parent_item_id` = 45658 WHERE `item_id` = 46122 AND `expansion_id` = 3; -- Conqueror's Darkruned Pauldrons -- Mantle of the Wayward Vanquisher
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 45658 LIMIT 1) as haxxorz), `parent_item_id` = 45658 WHERE `item_id` = 46117 AND `expansion_id` = 3; -- Conqueror's Darkruned Shoulderplates -- Mantle of the Wayward Vanquisher
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 45658 LIMIT 1) as haxxorz), `parent_item_id` = 45658 WHERE `item_id` = 46134 AND `expansion_id` = 3; -- Conqueror's Kirin Tor Shoulderpads -- Mantle of the Wayward Vanquisher
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 45658 LIMIT 1) as haxxorz), `parent_item_id` = 45658 WHERE `item_id` = 46196 AND `expansion_id` = 3; -- Conqueror's Nightsong Mantle -- Mantle of the Wayward Vanquisher
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 45658 LIMIT 1) as haxxorz), `parent_item_id` = 45658 WHERE `item_id` = 46157 AND `expansion_id` = 3; -- Conqueror's Nightsong Shoulderpads -- Mantle of the Wayward Vanquisher
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 45658 LIMIT 1) as haxxorz), `parent_item_id` = 45658 WHERE `item_id` = 46187 AND `expansion_id` = 3; -- Conqueror's Nightsong Spaulders -- Mantle of the Wayward Vanquisher
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 45658 LIMIT 1) as haxxorz), `parent_item_id` = 45658 WHERE `item_id` = 46127 AND `expansion_id` = 3; -- Conqueror's Terrorblade Pauldrons -- Mantle of the Wayward Vanquisher
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 52026 LIMIT 1) as haxxorz), `parent_item_id` = 52026 WHERE `item_id` = 51154 AND `expansion_id` = 3; -- Sanctified Ahn'Kahar Blood Hunter's Handguards -- Protector's Mark of Sanctification
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 52026 LIMIT 1) as haxxorz), `parent_item_id` = 52026 WHERE `item_id` = 51153 AND `expansion_id` = 3; -- Sanctified Ahn'Kahar Blood Hunter's Headpiece -- Protector's Mark of Sanctification
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 52026 LIMIT 1) as haxxorz), `parent_item_id` = 52026 WHERE `item_id` = 51152 AND `expansion_id` = 3; -- Sanctified Ahn'Kahar Blood Hunter's Legguards -- Protector's Mark of Sanctification
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 52026 LIMIT 1) as haxxorz), `parent_item_id` = 52026 WHERE `item_id` = 51151 AND `expansion_id` = 3; -- Sanctified Ahn'Kahar Blood Hunter's Spaulders -- Protector's Mark of Sanctification
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 52026 LIMIT 1) as haxxorz), `parent_item_id` = 52026 WHERE `item_id` = 51150 AND `expansion_id` = 3; -- Sanctified Ahn'Kahar Blood Hunter's Tunic -- Protector's Mark of Sanctification
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 52026 LIMIT 1) as haxxorz), `parent_item_id` = 52026 WHERE `item_id` = 51195 AND `expansion_id` = 3; -- Sanctified Frost Witch's Chestguard -- Protector's Mark of Sanctification
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 52026 LIMIT 1) as haxxorz), `parent_item_id` = 52026 WHERE `item_id` = 51197 AND `expansion_id` = 3; -- Sanctified Frost Witch's Faceguard -- Protector's Mark of Sanctification
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 52026 LIMIT 1) as haxxorz), `parent_item_id` = 52026 WHERE `item_id` = 51201 AND `expansion_id` = 3; -- Sanctified Frost Witch's Gloves -- Protector's Mark of Sanctification
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 52026 LIMIT 1) as haxxorz), `parent_item_id` = 52026 WHERE `item_id` = 51196 AND `expansion_id` = 3; -- Sanctified Frost Witch's Grips -- Protector's Mark of Sanctification
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 52026 LIMIT 1) as haxxorz), `parent_item_id` = 52026 WHERE `item_id` = 51191 AND `expansion_id` = 3; -- Sanctified Frost Witch's Handguards -- Protector's Mark of Sanctification
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 52026 LIMIT 1) as haxxorz), `parent_item_id` = 52026 WHERE `item_id` = 51200 AND `expansion_id` = 3; -- Sanctified Frost Witch's Hauberk -- Protector's Mark of Sanctification
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 52026 LIMIT 1) as haxxorz), `parent_item_id` = 52026 WHERE `item_id` = 51192 AND `expansion_id` = 3; -- Sanctified Frost Witch's Headpiece -- Protector's Mark of Sanctification
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 52026 LIMIT 1) as haxxorz), `parent_item_id` = 52026 WHERE `item_id` = 51202 AND `expansion_id` = 3; -- Sanctified Frost Witch's Helm -- Protector's Mark of Sanctification
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 52026 LIMIT 1) as haxxorz), `parent_item_id` = 52026 WHERE `item_id` = 51203 AND `expansion_id` = 3; -- Sanctified Frost Witch's Kilt -- Protector's Mark of Sanctification
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 52026 LIMIT 1) as haxxorz), `parent_item_id` = 52026 WHERE `item_id` = 51193 AND `expansion_id` = 3; -- Sanctified Frost Witch's Legguards -- Protector's Mark of Sanctification
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 52026 LIMIT 1) as haxxorz), `parent_item_id` = 52026 WHERE `item_id` = 51199 AND `expansion_id` = 3; -- Sanctified Frost Witch's Shoulderguards -- Protector's Mark of Sanctification
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 52026 LIMIT 1) as haxxorz), `parent_item_id` = 52026 WHERE `item_id` = 51204 AND `expansion_id` = 3; -- Sanctified Frost Witch's Shoulderpads -- Protector's Mark of Sanctification
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 52026 LIMIT 1) as haxxorz), `parent_item_id` = 52026 WHERE `item_id` = 51194 AND `expansion_id` = 3; -- Sanctified Frost Witch's Spaulders -- Protector's Mark of Sanctification
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 52026 LIMIT 1) as haxxorz), `parent_item_id` = 52026 WHERE `item_id` = 51190 AND `expansion_id` = 3; -- Sanctified Frost Witch's Tunic -- Protector's Mark of Sanctification
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 52026 LIMIT 1) as haxxorz), `parent_item_id` = 52026 WHERE `item_id` = 51198 AND `expansion_id` = 3; -- Sanctified Frost Witch's War-Kilt -- Protector's Mark of Sanctification
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 52026 LIMIT 1) as haxxorz), `parent_item_id` = 52026 WHERE `item_id` = 51214 AND `expansion_id` = 3; -- Sanctified Ymirjar Lord's Battleplate -- Protector's Mark of Sanctification
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 52026 LIMIT 1) as haxxorz), `parent_item_id` = 52026 WHERE `item_id` = 51219 AND `expansion_id` = 3; -- Sanctified Ymirjar Lord's Breastplate -- Protector's Mark of Sanctification
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 52026 LIMIT 1) as haxxorz), `parent_item_id` = 52026 WHERE `item_id` = 51213 AND `expansion_id` = 3; -- Sanctified Ymirjar Lord's Gauntlets -- Protector's Mark of Sanctification
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 52026 LIMIT 1) as haxxorz), `parent_item_id` = 52026 WHERE `item_id` = 51218 AND `expansion_id` = 3; -- Sanctified Ymirjar Lord's Greathelm -- Protector's Mark of Sanctification
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 52026 LIMIT 1) as haxxorz), `parent_item_id` = 52026 WHERE `item_id` = 51217 AND `expansion_id` = 3; -- Sanctified Ymirjar Lord's Handguards -- Protector's Mark of Sanctification
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 52026 LIMIT 1) as haxxorz), `parent_item_id` = 52026 WHERE `item_id` = 51212 AND `expansion_id` = 3; -- Sanctified Ymirjar Lord's Helmet -- Protector's Mark of Sanctification
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 52026 LIMIT 1) as haxxorz), `parent_item_id` = 52026 WHERE `item_id` = 51216 AND `expansion_id` = 3; -- Sanctified Ymirjar Lord's Legguards -- Protector's Mark of Sanctification
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 52026 LIMIT 1) as haxxorz), `parent_item_id` = 52026 WHERE `item_id` = 51211 AND `expansion_id` = 3; -- Sanctified Ymirjar Lord's Legplates -- Protector's Mark of Sanctification
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 52026 LIMIT 1) as haxxorz), `parent_item_id` = 52026 WHERE `item_id` = 51215 AND `expansion_id` = 3; -- Sanctified Ymirjar Lord's Pauldrons -- Protector's Mark of Sanctification
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 52026 LIMIT 1) as haxxorz), `parent_item_id` = 52026 WHERE `item_id` = 51210 AND `expansion_id` = 3; -- Sanctified Ymirjar Lord's Shoulderplates -- Protector's Mark of Sanctification
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 52029 LIMIT 1) as haxxorz), `parent_item_id` = 52029 WHERE `item_id` = 51285 AND `expansion_id` = 3; -- Sanctified Ahn'Kahar Blood Hunter's Handguards -- Protector's Mark of Sanctification
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 52029 LIMIT 1) as haxxorz), `parent_item_id` = 52029 WHERE `item_id` = 51286 AND `expansion_id` = 3; -- Sanctified Ahn'Kahar Blood Hunter's Headpiece -- Protector's Mark of Sanctification
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 52029 LIMIT 1) as haxxorz), `parent_item_id` = 52029 WHERE `item_id` = 51287 AND `expansion_id` = 3; -- Sanctified Ahn'Kahar Blood Hunter's Legguards -- Protector's Mark of Sanctification
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 52029 LIMIT 1) as haxxorz), `parent_item_id` = 52029 WHERE `item_id` = 51288 AND `expansion_id` = 3; -- Sanctified Ahn'Kahar Blood Hunter's Spaulders -- Protector's Mark of Sanctification
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 52029 LIMIT 1) as haxxorz), `parent_item_id` = 52029 WHERE `item_id` = 51289 AND `expansion_id` = 3; -- Sanctified Ahn'Kahar Blood Hunter's Tunic -- Protector's Mark of Sanctification
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 52029 LIMIT 1) as haxxorz), `parent_item_id` = 52029 WHERE `item_id` = 51244 AND `expansion_id` = 3; -- Sanctified Frost Witch's Chestguard -- Protector's Mark of Sanctification
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 52029 LIMIT 1) as haxxorz), `parent_item_id` = 52029 WHERE `item_id` = 51242 AND `expansion_id` = 3; -- Sanctified Frost Witch's Faceguard -- Protector's Mark of Sanctification
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 52029 LIMIT 1) as haxxorz), `parent_item_id` = 52029 WHERE `item_id` = 51238 AND `expansion_id` = 3; -- Sanctified Frost Witch's Gloves -- Protector's Mark of Sanctification
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 52029 LIMIT 1) as haxxorz), `parent_item_id` = 52029 WHERE `item_id` = 51243 AND `expansion_id` = 3; -- Sanctified Frost Witch's Grips -- Protector's Mark of Sanctification
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 52029 LIMIT 1) as haxxorz), `parent_item_id` = 52029 WHERE `item_id` = 51248 AND `expansion_id` = 3; -- Sanctified Frost Witch's Handguards -- Protector's Mark of Sanctification
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 52029 LIMIT 1) as haxxorz), `parent_item_id` = 52029 WHERE `item_id` = 51239 AND `expansion_id` = 3; -- Sanctified Frost Witch's Hauberk -- Protector's Mark of Sanctification
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 52029 LIMIT 1) as haxxorz), `parent_item_id` = 52029 WHERE `item_id` = 51247 AND `expansion_id` = 3; -- Sanctified Frost Witch's Headpiece -- Protector's Mark of Sanctification
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 52029 LIMIT 1) as haxxorz), `parent_item_id` = 52029 WHERE `item_id` = 51237 AND `expansion_id` = 3; -- Sanctified Frost Witch's Helm -- Protector's Mark of Sanctification
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 52029 LIMIT 1) as haxxorz), `parent_item_id` = 52029 WHERE `item_id` = 51236 AND `expansion_id` = 3; -- Sanctified Frost Witch's Kilt -- Protector's Mark of Sanctification
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 52029 LIMIT 1) as haxxorz), `parent_item_id` = 52029 WHERE `item_id` = 51246 AND `expansion_id` = 3; -- Sanctified Frost Witch's Legguards -- Protector's Mark of Sanctification
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 52029 LIMIT 1) as haxxorz), `parent_item_id` = 52029 WHERE `item_id` = 51240 AND `expansion_id` = 3; -- Sanctified Frost Witch's Shoulderguards -- Protector's Mark of Sanctification
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 52029 LIMIT 1) as haxxorz), `parent_item_id` = 52029 WHERE `item_id` = 51235 AND `expansion_id` = 3; -- Sanctified Frost Witch's Shoulderpads -- Protector's Mark of Sanctification
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 52029 LIMIT 1) as haxxorz), `parent_item_id` = 52029 WHERE `item_id` = 51245 AND `expansion_id` = 3; -- Sanctified Frost Witch's Spaulders -- Protector's Mark of Sanctification
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 52029 LIMIT 1) as haxxorz), `parent_item_id` = 52029 WHERE `item_id` = 51249 AND `expansion_id` = 3; -- Sanctified Frost Witch's Tunic -- Protector's Mark of Sanctification
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 52029 LIMIT 1) as haxxorz), `parent_item_id` = 52029 WHERE `item_id` = 51241 AND `expansion_id` = 3; -- Sanctified Frost Witch's War-Kilt -- Protector's Mark of Sanctification
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 52029 LIMIT 1) as haxxorz), `parent_item_id` = 52029 WHERE `item_id` = 51225 AND `expansion_id` = 3; -- Sanctified Ymirjar Lord's Battleplate -- Protector's Mark of Sanctification
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 52029 LIMIT 1) as haxxorz), `parent_item_id` = 52029 WHERE `item_id` = 51220 AND `expansion_id` = 3; -- Sanctified Ymirjar Lord's Breastplate -- Protector's Mark of Sanctification
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 52029 LIMIT 1) as haxxorz), `parent_item_id` = 52029 WHERE `item_id` = 51226 AND `expansion_id` = 3; -- Sanctified Ymirjar Lord's Gauntlets -- Protector's Mark of Sanctification
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 52029 LIMIT 1) as haxxorz), `parent_item_id` = 52029 WHERE `item_id` = 51221 AND `expansion_id` = 3; -- Sanctified Ymirjar Lord's Greathelm -- Protector's Mark of Sanctification
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 52029 LIMIT 1) as haxxorz), `parent_item_id` = 52029 WHERE `item_id` = 51222 AND `expansion_id` = 3; -- Sanctified Ymirjar Lord's Handguards -- Protector's Mark of Sanctification
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 52029 LIMIT 1) as haxxorz), `parent_item_id` = 52029 WHERE `item_id` = 51227 AND `expansion_id` = 3; -- Sanctified Ymirjar Lord's Helmet -- Protector's Mark of Sanctification
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 52029 LIMIT 1) as haxxorz), `parent_item_id` = 52029 WHERE `item_id` = 51223 AND `expansion_id` = 3; -- Sanctified Ymirjar Lord's Legguards -- Protector's Mark of Sanctification
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 52029 LIMIT 1) as haxxorz), `parent_item_id` = 52029 WHERE `item_id` = 51228 AND `expansion_id` = 3; -- Sanctified Ymirjar Lord's Legplates -- Protector's Mark of Sanctification
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 52029 LIMIT 1) as haxxorz), `parent_item_id` = 52029 WHERE `item_id` = 51224 AND `expansion_id` = 3; -- Sanctified Ymirjar Lord's Pauldrons -- Protector's Mark of Sanctification
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 52029 LIMIT 1) as haxxorz), `parent_item_id` = 52029 WHERE `item_id` = 51229 AND `expansion_id` = 3; -- Sanctified Ymirjar Lord's Shoulderplates -- Protector's Mark of Sanctification
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 47557 LIMIT 1) as haxxorz), `parent_item_id` = 47557 WHERE `item_id` = 47797 AND `expansion_id` = 3; -- Gul'dan's Gloves of Triumph -- Regalia of the Grand Conqueror
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 47557 LIMIT 1) as haxxorz), `parent_item_id` = 47557 WHERE `item_id` = 47796 AND `expansion_id` = 3; -- Gul'dan's Hood of Triumph -- Regalia of the Grand Conqueror
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 47557 LIMIT 1) as haxxorz), `parent_item_id` = 47557 WHERE `item_id` = 47795 AND `expansion_id` = 3; -- Gul'dan's Leggings of Triumph -- Regalia of the Grand Conqueror
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 47557 LIMIT 1) as haxxorz), `parent_item_id` = 47557 WHERE `item_id` = 47794 AND `expansion_id` = 3; -- Gul'dan's Robe of Triumph -- Regalia of the Grand Conqueror
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 47557 LIMIT 1) as haxxorz), `parent_item_id` = 47557 WHERE `item_id` = 47793 AND `expansion_id` = 3; -- Gul'dan's Shoulderpads of Triumph -- Regalia of the Grand Conqueror
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 47557 LIMIT 1) as haxxorz), `parent_item_id` = 47557 WHERE `item_id` = 47788 AND `expansion_id` = 3; -- Kel'Thuzad's Gloves of Triumph -- Regalia of the Grand Conqueror
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 47557 LIMIT 1) as haxxorz), `parent_item_id` = 47557 WHERE `item_id` = 47789 AND `expansion_id` = 3; -- Kel'Thuzad's Hood of Triumph -- Regalia of the Grand Conqueror
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 47557 LIMIT 1) as haxxorz), `parent_item_id` = 47557 WHERE `item_id` = 47790 AND `expansion_id` = 3; -- Kel'Thuzad's Leggings of Triumph -- Regalia of the Grand Conqueror
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 47557 LIMIT 1) as haxxorz), `parent_item_id` = 47557 WHERE `item_id` = 47791 AND `expansion_id` = 3; -- Kel'Thuzad's Robe of Triumph -- Regalia of the Grand Conqueror
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 47557 LIMIT 1) as haxxorz), `parent_item_id` = 47557 WHERE `item_id` = 47792 AND `expansion_id` = 3; -- Kel'Thuzad's Shoulderpads of Triumph -- Regalia of the Grand Conqueror
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 47557 LIMIT 1) as haxxorz), `parent_item_id` = 47557 WHERE `item_id` = 48617 AND `expansion_id` = 3; -- Liadrin's Battleplate of Triumph -- Regalia of the Grand Conqueror
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 47557 LIMIT 1) as haxxorz), `parent_item_id` = 47557 WHERE `item_id` = 48651 AND `expansion_id` = 3; -- Liadrin's Breastplate of Triumph -- Regalia of the Grand Conqueror
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 47557 LIMIT 1) as haxxorz), `parent_item_id` = 47557 WHERE `item_id` = 48649 AND `expansion_id` = 3; -- Liadrin's Faceguard of Triumph -- Regalia of the Grand Conqueror
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 47557 LIMIT 1) as haxxorz), `parent_item_id` = 47557 WHERE `item_id` = 48618 AND `expansion_id` = 3; -- Liadrin's Gauntlets of Triumph -- Regalia of the Grand Conqueror
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 47557 LIMIT 1) as haxxorz), `parent_item_id` = 47557 WHERE `item_id` = 48588 AND `expansion_id` = 3; -- Liadrin's Gloves of Triumph -- Regalia of the Grand Conqueror
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 47557 LIMIT 1) as haxxorz), `parent_item_id` = 47557 WHERE `item_id` = 48586 AND `expansion_id` = 3; -- Liadrin's Greaves of Triumph -- Regalia of the Grand Conqueror
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 47557 LIMIT 1) as haxxorz), `parent_item_id` = 47557 WHERE `item_id` = 48650 AND `expansion_id` = 3; -- Liadrin's Handguards of Triumph -- Regalia of the Grand Conqueror
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 47557 LIMIT 1) as haxxorz), `parent_item_id` = 47557 WHERE `item_id` = 48587 AND `expansion_id` = 3; -- Liadrin's Headpiece of Triumph -- Regalia of the Grand Conqueror
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 47557 LIMIT 1) as haxxorz), `parent_item_id` = 47557 WHERE `item_id` = 48619 AND `expansion_id` = 3; -- Liadrin's Helm of Triumph -- Regalia of the Grand Conqueror
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 47557 LIMIT 1) as haxxorz), `parent_item_id` = 47557 WHERE `item_id` = 48648 AND `expansion_id` = 3; -- Liadrin's Legguards of Triumph -- Regalia of the Grand Conqueror
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 47557 LIMIT 1) as haxxorz), `parent_item_id` = 47557 WHERE `item_id` = 48620 AND `expansion_id` = 3; -- Liadrin's Legplates of Triumph -- Regalia of the Grand Conqueror
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 47557 LIMIT 1) as haxxorz), `parent_item_id` = 47557 WHERE `item_id` = 48647 AND `expansion_id` = 3; -- Liadrin's Shoulderguards of Triumph -- Regalia of the Grand Conqueror
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 47557 LIMIT 1) as haxxorz), `parent_item_id` = 47557 WHERE `item_id` = 48621 AND `expansion_id` = 3; -- Liadrin's Shoulderplates of Triumph -- Regalia of the Grand Conqueror
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 47557 LIMIT 1) as haxxorz), `parent_item_id` = 47557 WHERE `item_id` = 48585 AND `expansion_id` = 3; -- Liadrin's Spaulders of Triumph -- Regalia of the Grand Conqueror
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 47557 LIMIT 1) as haxxorz), `parent_item_id` = 47557 WHERE `item_id` = 48589 AND `expansion_id` = 3; -- Liadrin's Tunic of Triumph -- Regalia of the Grand Conqueror
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 47557 LIMIT 1) as haxxorz), `parent_item_id` = 47557 WHERE `item_id` = 48616 AND `expansion_id` = 3; -- Turalyon's Battleplate of Triumph -- Regalia of the Grand Conqueror
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 47557 LIMIT 1) as haxxorz), `parent_item_id` = 47557 WHERE `item_id` = 48642 AND `expansion_id` = 3; -- Turalyon's Breastplate of Triumph -- Regalia of the Grand Conqueror
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 47557 LIMIT 1) as haxxorz), `parent_item_id` = 47557 WHERE `item_id` = 48644 AND `expansion_id` = 3; -- Turalyon's Faceguard of Triumph -- Regalia of the Grand Conqueror
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 47557 LIMIT 1) as haxxorz), `parent_item_id` = 47557 WHERE `item_id` = 48615 AND `expansion_id` = 3; -- Turalyon's Gauntlets of Triumph -- Regalia of the Grand Conqueror
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 47557 LIMIT 1) as haxxorz), `parent_item_id` = 47557 WHERE `item_id` = 48583 AND `expansion_id` = 3; -- Turalyon's Gloves of Triumph -- Regalia of the Grand Conqueror
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 47557 LIMIT 1) as haxxorz), `parent_item_id` = 47557 WHERE `item_id` = 48581 AND `expansion_id` = 3; -- Turalyon's Greaves of Triumph -- Regalia of the Grand Conqueror
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 47557 LIMIT 1) as haxxorz), `parent_item_id` = 47557 WHERE `item_id` = 48643 AND `expansion_id` = 3; -- Turalyon's Handguards of Triumph -- Regalia of the Grand Conqueror
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 47557 LIMIT 1) as haxxorz), `parent_item_id` = 47557 WHERE `item_id` = 48582 AND `expansion_id` = 3; -- Turalyon's Headpiece of Triumph -- Regalia of the Grand Conqueror
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 47557 LIMIT 1) as haxxorz), `parent_item_id` = 47557 WHERE `item_id` = 48614 AND `expansion_id` = 3; -- Turalyon's Helm of Triumph -- Regalia of the Grand Conqueror
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 47557 LIMIT 1) as haxxorz), `parent_item_id` = 47557 WHERE `item_id` = 48645 AND `expansion_id` = 3; -- Turalyon's Legguards of Triumph -- Regalia of the Grand Conqueror
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 47557 LIMIT 1) as haxxorz), `parent_item_id` = 47557 WHERE `item_id` = 48613 AND `expansion_id` = 3; -- Turalyon's Legplates of Triumph -- Regalia of the Grand Conqueror
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 47557 LIMIT 1) as haxxorz), `parent_item_id` = 47557 WHERE `item_id` = 48646 AND `expansion_id` = 3; -- Turalyon's Shoulderguards of Triumph -- Regalia of the Grand Conqueror
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 47557 LIMIT 1) as haxxorz), `parent_item_id` = 47557 WHERE `item_id` = 48612 AND `expansion_id` = 3; -- Turalyon's Shoulderplates of Triumph -- Regalia of the Grand Conqueror
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 47557 LIMIT 1) as haxxorz), `parent_item_id` = 47557 WHERE `item_id` = 48580 AND `expansion_id` = 3; -- Turalyon's Spaulders of Triumph -- Regalia of the Grand Conqueror
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 47557 LIMIT 1) as haxxorz), `parent_item_id` = 47557 WHERE `item_id` = 48584 AND `expansion_id` = 3; -- Turalyon's Tunic of Triumph -- Regalia of the Grand Conqueror
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 47557 LIMIT 1) as haxxorz), `parent_item_id` = 47557 WHERE `item_id` = 48085 AND `expansion_id` = 3; -- Velen's Circlet of Triumph -- Regalia of the Grand Conqueror
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 47557 LIMIT 1) as haxxorz), `parent_item_id` = 47557 WHERE `item_id` = 48035 AND `expansion_id` = 3; -- Velen's Cowl of Triumph -- Regalia of the Grand Conqueror
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 47557 LIMIT 1) as haxxorz), `parent_item_id` = 47557 WHERE `item_id` = 48037 AND `expansion_id` = 3; -- Velen's Gloves of Triumph -- Regalia of the Grand Conqueror
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 47557 LIMIT 1) as haxxorz), `parent_item_id` = 47557 WHERE `item_id` = 48086 AND `expansion_id` = 3; -- Velen's Handwraps of Triumph -- Regalia of the Grand Conqueror
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 47557 LIMIT 1) as haxxorz), `parent_item_id` = 47557 WHERE `item_id` = 48033 AND `expansion_id` = 3; -- Velen's Leggings of Triumph -- Regalia of the Grand Conqueror
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 47557 LIMIT 1) as haxxorz), `parent_item_id` = 47557 WHERE `item_id` = 48082 AND `expansion_id` = 3; -- Velen's Mantle of Triumph -- Regalia of the Grand Conqueror
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 47557 LIMIT 1) as haxxorz), `parent_item_id` = 47557 WHERE `item_id` = 48084 AND `expansion_id` = 3; -- Velen's Pants of Triumph -- Regalia of the Grand Conqueror
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 47557 LIMIT 1) as haxxorz), `parent_item_id` = 47557 WHERE `item_id` = 48083 AND `expansion_id` = 3; -- Velen's Raiments of Triumph -- Regalia of the Grand Conqueror
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 47557 LIMIT 1) as haxxorz), `parent_item_id` = 47557 WHERE `item_id` = 48031 AND `expansion_id` = 3; -- Velen's Robe of Triumph -- Regalia of the Grand Conqueror
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 47557 LIMIT 1) as haxxorz), `parent_item_id` = 47557 WHERE `item_id` = 48029 AND `expansion_id` = 3; -- Velen's Shoulderpads of Triumph -- Regalia of the Grand Conqueror
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 47557 LIMIT 1) as haxxorz), `parent_item_id` = 47557 WHERE `item_id` = 48088 AND `expansion_id` = 3; -- Zabra's Circlet of Triumph -- Regalia of the Grand Conqueror
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 47557 LIMIT 1) as haxxorz), `parent_item_id` = 47557 WHERE `item_id` = 48058 AND `expansion_id` = 3; -- Zabra's Cowl of Triumph -- Regalia of the Grand Conqueror
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 47557 LIMIT 1) as haxxorz), `parent_item_id` = 47557 WHERE `item_id` = 48057 AND `expansion_id` = 3; -- Zabra's Gloves of Triumph -- Regalia of the Grand Conqueror
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 47557 LIMIT 1) as haxxorz), `parent_item_id` = 47557 WHERE `item_id` = 48087 AND `expansion_id` = 3; -- Zabra's Handwraps of Triumph -- Regalia of the Grand Conqueror
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 47557 LIMIT 1) as haxxorz), `parent_item_id` = 47557 WHERE `item_id` = 48059 AND `expansion_id` = 3; -- Zabra's Leggings of Triumph -- Regalia of the Grand Conqueror
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 47557 LIMIT 1) as haxxorz), `parent_item_id` = 47557 WHERE `item_id` = 48091 AND `expansion_id` = 3; -- Zabra's Mantle of Triumph -- Regalia of the Grand Conqueror
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 47557 LIMIT 1) as haxxorz), `parent_item_id` = 47557 WHERE `item_id` = 48089 AND `expansion_id` = 3; -- Zabra's Pants of Triumph -- Regalia of the Grand Conqueror
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 47557 LIMIT 1) as haxxorz), `parent_item_id` = 47557 WHERE `item_id` = 48090 AND `expansion_id` = 3; -- Zabra's Raiments of Triumph -- Regalia of the Grand Conqueror
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 47557 LIMIT 1) as haxxorz), `parent_item_id` = 47557 WHERE `item_id` = 48060 AND `expansion_id` = 3; -- Zabra's Robe of Triumph -- Regalia of the Grand Conqueror
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 47557 LIMIT 1) as haxxorz), `parent_item_id` = 47557 WHERE `item_id` = 48061 AND `expansion_id` = 3; -- Zabra's Shoulderpads of Triumph -- Regalia of the Grand Conqueror
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 47558 LIMIT 1) as haxxorz), `parent_item_id` = 47558 WHERE `item_id` = 48396 AND `expansion_id` = 3; -- Hellscream's Battleplate of Triumph -- Regalia of the Grand Protector
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 47558 LIMIT 1) as haxxorz), `parent_item_id` = 47558 WHERE `item_id` = 48466 AND `expansion_id` = 3; -- Hellscream's Breastplate of Triumph -- Regalia of the Grand Protector
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 47558 LIMIT 1) as haxxorz), `parent_item_id` = 47558 WHERE `item_id` = 48397 AND `expansion_id` = 3; -- Hellscream's Gauntlets of Triumph -- Regalia of the Grand Protector
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 47558 LIMIT 1) as haxxorz), `parent_item_id` = 47558 WHERE `item_id` = 48468 AND `expansion_id` = 3; -- Hellscream's Greathelm of Triumph -- Regalia of the Grand Protector
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 47558 LIMIT 1) as haxxorz), `parent_item_id` = 47558 WHERE `item_id` = 48467 AND `expansion_id` = 3; -- Hellscream's Handguards of Triumph -- Regalia of the Grand Protector
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 47558 LIMIT 1) as haxxorz), `parent_item_id` = 47558 WHERE `item_id` = 48398 AND `expansion_id` = 3; -- Hellscream's Helmet of Triumph -- Regalia of the Grand Protector
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 47558 LIMIT 1) as haxxorz), `parent_item_id` = 47558 WHERE `item_id` = 48469 AND `expansion_id` = 3; -- Hellscream's Legguards of Triumph -- Regalia of the Grand Protector
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 47558 LIMIT 1) as haxxorz), `parent_item_id` = 47558 WHERE `item_id` = 48399 AND `expansion_id` = 3; -- Hellscream's Legplates of Triumph -- Regalia of the Grand Protector
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 47558 LIMIT 1) as haxxorz), `parent_item_id` = 47558 WHERE `item_id` = 48470 AND `expansion_id` = 3; -- Hellscream's Pauldrons of Triumph -- Regalia of the Grand Protector
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 47558 LIMIT 1) as haxxorz), `parent_item_id` = 47558 WHERE `item_id` = 48400 AND `expansion_id` = 3; -- Hellscream's Shoulderplates of Triumph -- Regalia of the Grand Protector
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 47558 LIMIT 1) as haxxorz), `parent_item_id` = 47558 WHERE `item_id` = 48355 AND `expansion_id` = 3; -- Nobundo's Chestguard of Triumph -- Regalia of the Grand Protector
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 47558 LIMIT 1) as haxxorz), `parent_item_id` = 47558 WHERE `item_id` = 48353 AND `expansion_id` = 3; -- Nobundo's Faceguard of Triumph -- Regalia of the Grand Protector
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 47558 LIMIT 1) as haxxorz), `parent_item_id` = 47558 WHERE `item_id` = 48324 AND `expansion_id` = 3; -- Nobundo's Gloves of Triumph -- Regalia of the Grand Protector
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 47558 LIMIT 1) as haxxorz), `parent_item_id` = 47558 WHERE `item_id` = 48354 AND `expansion_id` = 3; -- Nobundo's Grips of Triumph -- Regalia of the Grand Protector
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 47558 LIMIT 1) as haxxorz), `parent_item_id` = 47558 WHERE `item_id` = 48293 AND `expansion_id` = 3; -- Nobundo's Handguards of Triumph -- Regalia of the Grand Protector
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 47558 LIMIT 1) as haxxorz), `parent_item_id` = 47558 WHERE `item_id` = 48325 AND `expansion_id` = 3; -- Nobundo's Hauberk of Triumph -- Regalia of the Grand Protector
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 47558 LIMIT 1) as haxxorz), `parent_item_id` = 47558 WHERE `item_id` = 48292 AND `expansion_id` = 3; -- Nobundo's Headpiece of Triumph -- Regalia of the Grand Protector
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 47558 LIMIT 1) as haxxorz), `parent_item_id` = 47558 WHERE `item_id` = 48323 AND `expansion_id` = 3; -- Nobundo's Helm of Triumph -- Regalia of the Grand Protector
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 47558 LIMIT 1) as haxxorz), `parent_item_id` = 47558 WHERE `item_id` = 48322 AND `expansion_id` = 3; -- Nobundo's Kilt of Triumph -- Regalia of the Grand Protector
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 47558 LIMIT 1) as haxxorz), `parent_item_id` = 47558 WHERE `item_id` = 48291 AND `expansion_id` = 3; -- Nobundo's Legguards of Triumph -- Regalia of the Grand Protector
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 47558 LIMIT 1) as haxxorz), `parent_item_id` = 47558 WHERE `item_id` = 48351 AND `expansion_id` = 3; -- Nobundo's Shoulderguards of Triumph -- Regalia of the Grand Protector
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 47558 LIMIT 1) as haxxorz), `parent_item_id` = 47558 WHERE `item_id` = 48321 AND `expansion_id` = 3; -- Nobundo's Shoulderpads of Triumph -- Regalia of the Grand Protector
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 47558 LIMIT 1) as haxxorz), `parent_item_id` = 47558 WHERE `item_id` = 48290 AND `expansion_id` = 3; -- Nobundo's Spaulders of Triumph -- Regalia of the Grand Protector
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 47558 LIMIT 1) as haxxorz), `parent_item_id` = 47558 WHERE `item_id` = 48294 AND `expansion_id` = 3; -- Nobundo's Tunic of Triumph -- Regalia of the Grand Protector
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 47558 LIMIT 1) as haxxorz), `parent_item_id` = 47558 WHERE `item_id` = 48352 AND `expansion_id` = 3; -- Nobundo's War-Kilt of Triumph -- Regalia of the Grand Protector
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 47558 LIMIT 1) as haxxorz), `parent_item_id` = 47558 WHERE `item_id` = 48356 AND `expansion_id` = 3; -- Thrall's Chestguard of Triumph -- Regalia of the Grand Protector
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 47558 LIMIT 1) as haxxorz), `parent_item_id` = 47558 WHERE `item_id` = 48358 AND `expansion_id` = 3; -- Thrall's Faceguard of Triumph -- Regalia of the Grand Protector
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 47558 LIMIT 1) as haxxorz), `parent_item_id` = 47558 WHERE `item_id` = 48327 AND `expansion_id` = 3; -- Thrall's Gloves of Triumph -- Regalia of the Grand Protector
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 47558 LIMIT 1) as haxxorz), `parent_item_id` = 47558 WHERE `item_id` = 48357 AND `expansion_id` = 3; -- Thrall's Grips of Triumph -- Regalia of the Grand Protector
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 47558 LIMIT 1) as haxxorz), `parent_item_id` = 47558 WHERE `item_id` = 48306 AND `expansion_id` = 3; -- Thrall's Handguards of Triumph -- Regalia of the Grand Protector
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 47558 LIMIT 1) as haxxorz), `parent_item_id` = 47558 WHERE `item_id` = 48326 AND `expansion_id` = 3; -- Thrall's Hauberk of Triumph -- Regalia of the Grand Protector
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 47558 LIMIT 1) as haxxorz), `parent_item_id` = 47558 WHERE `item_id` = 48307 AND `expansion_id` = 3; -- Thrall's Headpiece of Triumph -- Regalia of the Grand Protector
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 47558 LIMIT 1) as haxxorz), `parent_item_id` = 47558 WHERE `item_id` = 48328 AND `expansion_id` = 3; -- Thrall's Helm of Triumph -- Regalia of the Grand Protector
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 47558 LIMIT 1) as haxxorz), `parent_item_id` = 47558 WHERE `item_id` = 48329 AND `expansion_id` = 3; -- Thrall's Kilt of Triumph -- Regalia of the Grand Protector
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 47558 LIMIT 1) as haxxorz), `parent_item_id` = 47558 WHERE `item_id` = 48308 AND `expansion_id` = 3; -- Thrall's Legguards of Triumph -- Regalia of the Grand Protector
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 47558 LIMIT 1) as haxxorz), `parent_item_id` = 47558 WHERE `item_id` = 48360 AND `expansion_id` = 3; -- Thrall's Shoulderguards of Triumph -- Regalia of the Grand Protector
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 47558 LIMIT 1) as haxxorz), `parent_item_id` = 47558 WHERE `item_id` = 48330 AND `expansion_id` = 3; -- Thrall's Shoulderpads of Triumph -- Regalia of the Grand Protector
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 47558 LIMIT 1) as haxxorz), `parent_item_id` = 47558 WHERE `item_id` = 48309 AND `expansion_id` = 3; -- Thrall's Spaulders of Triumph -- Regalia of the Grand Protector
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 47558 LIMIT 1) as haxxorz), `parent_item_id` = 47558 WHERE `item_id` = 48305 AND `expansion_id` = 3; -- Thrall's Tunic of Triumph -- Regalia of the Grand Protector
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 47558 LIMIT 1) as haxxorz), `parent_item_id` = 47558 WHERE `item_id` = 48359 AND `expansion_id` = 3; -- Thrall's War-Kilt of Triumph -- Regalia of the Grand Protector
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 47558 LIMIT 1) as haxxorz), `parent_item_id` = 47558 WHERE `item_id` = 48266 AND `expansion_id` = 3; -- Windrunner's Handguards of Triumph -- Regalia of the Grand Protector
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 47558 LIMIT 1) as haxxorz), `parent_item_id` = 47558 WHERE `item_id` = 48263 AND `expansion_id` = 3; -- Windrunner's Handguards of Triumph -- Regalia of the Grand Protector
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 47558 LIMIT 1) as haxxorz), `parent_item_id` = 47558 WHERE `item_id` = 48267 AND `expansion_id` = 3; -- Windrunner's Headpiece of Triumph -- Regalia of the Grand Protector
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 47558 LIMIT 1) as haxxorz), `parent_item_id` = 47558 WHERE `item_id` = 48262 AND `expansion_id` = 3; -- Windrunner's Headpiece of Triumph -- Regalia of the Grand Protector
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 47558 LIMIT 1) as haxxorz), `parent_item_id` = 47558 WHERE `item_id` = 48261 AND `expansion_id` = 3; -- Windrunner's Legguards of Triumph -- Regalia of the Grand Protector
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 47558 LIMIT 1) as haxxorz), `parent_item_id` = 47558 WHERE `item_id` = 48268 AND `expansion_id` = 3; -- Windrunner's Legguards of Triumph -- Regalia of the Grand Protector
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 47558 LIMIT 1) as haxxorz), `parent_item_id` = 47558 WHERE `item_id` = 48260 AND `expansion_id` = 3; -- Windrunner's Spaulders of Triumph -- Regalia of the Grand Protector
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 47558 LIMIT 1) as haxxorz), `parent_item_id` = 47558 WHERE `item_id` = 48269 AND `expansion_id` = 3; -- Windrunner's Spaulders of Triumph -- Regalia of the Grand Protector
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 47558 LIMIT 1) as haxxorz), `parent_item_id` = 47558 WHERE `item_id` = 48264 AND `expansion_id` = 3; -- Windrunner's Tunic of Triumph -- Regalia of the Grand Protector
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 47558 LIMIT 1) as haxxorz), `parent_item_id` = 47558 WHERE `item_id` = 48265 AND `expansion_id` = 3; -- Windrunner's Tunic of Triumph -- Regalia of the Grand Protector
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 47558 LIMIT 1) as haxxorz), `parent_item_id` = 47558 WHERE `item_id` = 48385 AND `expansion_id` = 3; -- Wrynn's Battleplate of Triumph -- Regalia of the Grand Protector
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 47558 LIMIT 1) as haxxorz), `parent_item_id` = 47558 WHERE `item_id` = 48451 AND `expansion_id` = 3; -- Wrynn's Breastplate of Triumph -- Regalia of the Grand Protector
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 47558 LIMIT 1) as haxxorz), `parent_item_id` = 47558 WHERE `item_id` = 48384 AND `expansion_id` = 3; -- Wrynn's Gauntlets of Triumph -- Regalia of the Grand Protector
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 47558 LIMIT 1) as haxxorz), `parent_item_id` = 47558 WHERE `item_id` = 48433 AND `expansion_id` = 3; -- Wrynn's Greathelm of Triumph -- Regalia of the Grand Protector
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 47558 LIMIT 1) as haxxorz), `parent_item_id` = 47558 WHERE `item_id` = 48453 AND `expansion_id` = 3; -- Wrynn's Handguards of Triumph -- Regalia of the Grand Protector
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 47558 LIMIT 1) as haxxorz), `parent_item_id` = 47558 WHERE `item_id` = 48383 AND `expansion_id` = 3; -- Wrynn's Helmet of Triumph -- Regalia of the Grand Protector
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 47558 LIMIT 1) as haxxorz), `parent_item_id` = 47558 WHERE `item_id` = 48447 AND `expansion_id` = 3; -- Wrynn's Legguards of Triumph -- Regalia of the Grand Protector
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 47558 LIMIT 1) as haxxorz), `parent_item_id` = 47558 WHERE `item_id` = 48382 AND `expansion_id` = 3; -- Wrynn's Legplates of Triumph -- Regalia of the Grand Protector
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 47558 LIMIT 1) as haxxorz), `parent_item_id` = 47558 WHERE `item_id` = 48455 AND `expansion_id` = 3; -- Wrynn's Pauldrons of Triumph -- Regalia of the Grand Protector
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 47558 LIMIT 1) as haxxorz), `parent_item_id` = 47558 WHERE `item_id` = 48381 AND `expansion_id` = 3; -- Wrynn's Shoulderplates of Triumph -- Regalia of the Grand Protector
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 47559 LIMIT 1) as haxxorz), `parent_item_id` = 47559 WHERE `item_id` = 48233 AND `expansion_id` = 3; -- Garona's Breastplate of Triumph -- Regalia of the Grand Vanquisher
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 47559 LIMIT 1) as haxxorz), `parent_item_id` = 47559 WHERE `item_id` = 48234 AND `expansion_id` = 3; -- Garona's Gauntlets of Triumph -- Regalia of the Grand Vanquisher
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 47559 LIMIT 1) as haxxorz), `parent_item_id` = 47559 WHERE `item_id` = 48235 AND `expansion_id` = 3; -- Garona's Helmet of Triumph -- Regalia of the Grand Vanquisher
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 47559 LIMIT 1) as haxxorz), `parent_item_id` = 47559 WHERE `item_id` = 48236 AND `expansion_id` = 3; -- Garona's Legplates of Triumph -- Regalia of the Grand Vanquisher
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 47559 LIMIT 1) as haxxorz), `parent_item_id` = 47559 WHERE `item_id` = 48237 AND `expansion_id` = 3; -- Garona's Pauldrons of Triumph -- Regalia of the Grand Vanquisher
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 47559 LIMIT 1) as haxxorz), `parent_item_id` = 47559 WHERE `item_id` = 47762 AND `expansion_id` = 3; -- Khadgar's Gauntlets of Triumph -- Regalia of the Grand Vanquisher
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 47559 LIMIT 1) as haxxorz), `parent_item_id` = 47559 WHERE `item_id` = 47761 AND `expansion_id` = 3; -- Khadgar's Hood of Triumph -- Regalia of the Grand Vanquisher
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 47559 LIMIT 1) as haxxorz), `parent_item_id` = 47559 WHERE `item_id` = 47760 AND `expansion_id` = 3; -- Khadgar's Leggings of Triumph -- Regalia of the Grand Vanquisher
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 47559 LIMIT 1) as haxxorz), `parent_item_id` = 47559 WHERE `item_id` = 47759 AND `expansion_id` = 3; -- Khadgar's Robe of Triumph -- Regalia of the Grand Vanquisher
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 47559 LIMIT 1) as haxxorz), `parent_item_id` = 47559 WHERE `item_id` = 47758 AND `expansion_id` = 3; -- Khadgar's Shoulderpads of Triumph -- Regalia of the Grand Vanquisher
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 47559 LIMIT 1) as haxxorz), `parent_item_id` = 47559 WHERE `item_id` = 48491 AND `expansion_id` = 3; -- Koltira's Battleplate of Triumph -- Regalia of the Grand Vanquisher
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 47559 LIMIT 1) as haxxorz), `parent_item_id` = 47559 WHERE `item_id` = 48548 AND `expansion_id` = 3; -- Koltira's Chestguard of Triumph -- Regalia of the Grand Vanquisher
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 47559 LIMIT 1) as haxxorz), `parent_item_id` = 47559 WHERE `item_id` = 48550 AND `expansion_id` = 3; -- Koltira's Faceguard of Triumph -- Regalia of the Grand Vanquisher
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 47559 LIMIT 1) as haxxorz), `parent_item_id` = 47559 WHERE `item_id` = 48492 AND `expansion_id` = 3; -- Koltira's Gauntlets of Triumph -- Regalia of the Grand Vanquisher
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 47559 LIMIT 1) as haxxorz), `parent_item_id` = 47559 WHERE `item_id` = 48549 AND `expansion_id` = 3; -- Koltira's Handguards of Triumph -- Regalia of the Grand Vanquisher
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 47559 LIMIT 1) as haxxorz), `parent_item_id` = 47559 WHERE `item_id` = 48493 AND `expansion_id` = 3; -- Koltira's Helmet of Triumph -- Regalia of the Grand Vanquisher
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 47559 LIMIT 1) as haxxorz), `parent_item_id` = 47559 WHERE `item_id` = 48551 AND `expansion_id` = 3; -- Koltira's Legguards of Triumph -- Regalia of the Grand Vanquisher
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 47559 LIMIT 1) as haxxorz), `parent_item_id` = 47559 WHERE `item_id` = 48494 AND `expansion_id` = 3; -- Koltira's Legplates of Triumph -- Regalia of the Grand Vanquisher
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 47559 LIMIT 1) as haxxorz), `parent_item_id` = 47559 WHERE `item_id` = 48552 AND `expansion_id` = 3; -- Koltira's Pauldrons of Triumph -- Regalia of the Grand Vanquisher
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 47559 LIMIT 1) as haxxorz), `parent_item_id` = 47559 WHERE `item_id` = 48495 AND `expansion_id` = 3; -- Koltira's Shoulderplates of Triumph -- Regalia of the Grand Vanquisher
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 47559 LIMIT 1) as haxxorz), `parent_item_id` = 47559 WHERE `item_id` = 48171 AND `expansion_id` = 3; -- Malfurion's Cover of Triumph -- Regalia of the Grand Vanquisher
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 47559 LIMIT 1) as haxxorz), `parent_item_id` = 47559 WHERE `item_id` = 48172 AND `expansion_id` = 3; -- Malfurion's Gloves of Triumph -- Regalia of the Grand Vanquisher
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 47559 LIMIT 1) as haxxorz), `parent_item_id` = 47559 WHERE `item_id` = 48203 AND `expansion_id` = 3; -- Malfurion's Handgrips of Triumph -- Regalia of the Grand Vanquisher
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 47559 LIMIT 1) as haxxorz), `parent_item_id` = 47559 WHERE `item_id` = 48142 AND `expansion_id` = 3; -- Malfurion's Handguards of Triumph -- Regalia of the Grand Vanquisher
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 47559 LIMIT 1) as haxxorz), `parent_item_id` = 47559 WHERE `item_id` = 48204 AND `expansion_id` = 3; -- Malfurion's Headguard of Triumph -- Regalia of the Grand Vanquisher
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 47559 LIMIT 1) as haxxorz), `parent_item_id` = 47559 WHERE `item_id` = 48141 AND `expansion_id` = 3; -- Malfurion's Headpiece of Triumph -- Regalia of the Grand Vanquisher
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 47559 LIMIT 1) as haxxorz), `parent_item_id` = 47559 WHERE `item_id` = 48140 AND `expansion_id` = 3; -- Malfurion's Leggings of Triumph -- Regalia of the Grand Vanquisher
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 47559 LIMIT 1) as haxxorz), `parent_item_id` = 47559 WHERE `item_id` = 48205 AND `expansion_id` = 3; -- Malfurion's Legguards of Triumph -- Regalia of the Grand Vanquisher
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 47559 LIMIT 1) as haxxorz), `parent_item_id` = 47559 WHERE `item_id` = 48168 AND `expansion_id` = 3; -- Malfurion's Mantle of Triumph -- Regalia of the Grand Vanquisher
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 47559 LIMIT 1) as haxxorz), `parent_item_id` = 47559 WHERE `item_id` = 48206 AND `expansion_id` = 3; -- Malfurion's Raiments of Triumph -- Regalia of the Grand Vanquisher
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 47559 LIMIT 1) as haxxorz), `parent_item_id` = 47559 WHERE `item_id` = 48139 AND `expansion_id` = 3; -- Malfurion's Robe of Triumph -- Regalia of the Grand Vanquisher
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 47559 LIMIT 1) as haxxorz), `parent_item_id` = 47559 WHERE `item_id` = 48207 AND `expansion_id` = 3; -- Malfurion's Shoulderpads of Triumph -- Regalia of the Grand Vanquisher
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 47559 LIMIT 1) as haxxorz), `parent_item_id` = 47559 WHERE `item_id` = 48138 AND `expansion_id` = 3; -- Malfurion's Spaulders of Triumph -- Regalia of the Grand Vanquisher
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 47559 LIMIT 1) as haxxorz), `parent_item_id` = 47559 WHERE `item_id` = 48170 AND `expansion_id` = 3; -- Malfurion's Trousers of Triumph -- Regalia of the Grand Vanquisher
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 47559 LIMIT 1) as haxxorz), `parent_item_id` = 47559 WHERE `item_id` = 48169 AND `expansion_id` = 3; -- Malfurion's Vestments of Triumph -- Regalia of the Grand Vanquisher
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 47559 LIMIT 1) as haxxorz), `parent_item_id` = 47559 WHERE `item_id` = 48174 AND `expansion_id` = 3; -- Runetotem's Cover of Triumph -- Regalia of the Grand Vanquisher
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 47559 LIMIT 1) as haxxorz), `parent_item_id` = 47559 WHERE `item_id` = 48173 AND `expansion_id` = 3; -- Runetotem's Gloves of Triumph -- Regalia of the Grand Vanquisher
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 47559 LIMIT 1) as haxxorz), `parent_item_id` = 47559 WHERE `item_id` = 48202 AND `expansion_id` = 3; -- Runetotem's Handgrips of Triumph -- Regalia of the Grand Vanquisher
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 47559 LIMIT 1) as haxxorz), `parent_item_id` = 47559 WHERE `item_id` = 48143 AND `expansion_id` = 3; -- Runetotem's Handguards of Triumph -- Regalia of the Grand Vanquisher
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 47559 LIMIT 1) as haxxorz), `parent_item_id` = 47559 WHERE `item_id` = 48201 AND `expansion_id` = 3; -- Runetotem's Headguard of Triumph -- Regalia of the Grand Vanquisher
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 47559 LIMIT 1) as haxxorz), `parent_item_id` = 47559 WHERE `item_id` = 48144 AND `expansion_id` = 3; -- Runetotem's Headpiece of Triumph -- Regalia of the Grand Vanquisher
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 47559 LIMIT 1) as haxxorz), `parent_item_id` = 47559 WHERE `item_id` = 48145 AND `expansion_id` = 3; -- Runetotem's Leggings of Triumph -- Regalia of the Grand Vanquisher
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 47559 LIMIT 1) as haxxorz), `parent_item_id` = 47559 WHERE `item_id` = 48200 AND `expansion_id` = 3; -- Runetotem's Legguards of Triumph -- Regalia of the Grand Vanquisher
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 47559 LIMIT 1) as haxxorz), `parent_item_id` = 47559 WHERE `item_id` = 48177 AND `expansion_id` = 3; -- Runetotem's Mantle of Triumph -- Regalia of the Grand Vanquisher
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 47559 LIMIT 1) as haxxorz), `parent_item_id` = 47559 WHERE `item_id` = 48199 AND `expansion_id` = 3; -- Runetotem's Raiments of Triumph -- Regalia of the Grand Vanquisher
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 47559 LIMIT 1) as haxxorz), `parent_item_id` = 47559 WHERE `item_id` = 48146 AND `expansion_id` = 3; -- Runetotem's Robe of Triumph -- Regalia of the Grand Vanquisher
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 47559 LIMIT 1) as haxxorz), `parent_item_id` = 47559 WHERE `item_id` = 48198 AND `expansion_id` = 3; -- Runetotem's Shoulderpads of Triumph -- Regalia of the Grand Vanquisher
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 47559 LIMIT 1) as haxxorz), `parent_item_id` = 47559 WHERE `item_id` = 48147 AND `expansion_id` = 3; -- Runetotem's Spaulders of Triumph -- Regalia of the Grand Vanquisher
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 47559 LIMIT 1) as haxxorz), `parent_item_id` = 47559 WHERE `item_id` = 48175 AND `expansion_id` = 3; -- Runetotem's Trousers of Triumph -- Regalia of the Grand Vanquisher
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 47559 LIMIT 1) as haxxorz), `parent_item_id` = 47559 WHERE `item_id` = 48176 AND `expansion_id` = 3; -- Runetotem's Vestments of Triumph -- Regalia of the Grand Vanquisher
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 47559 LIMIT 1) as haxxorz), `parent_item_id` = 47559 WHERE `item_id` = 47763 AND `expansion_id` = 3; -- Sunstrider's Gauntlets of Triumph -- Regalia of the Grand Vanquisher
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 47559 LIMIT 1) as haxxorz), `parent_item_id` = 47559 WHERE `item_id` = 47764 AND `expansion_id` = 3; -- Sunstrider's Hood of Triumph -- Regalia of the Grand Vanquisher
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 47559 LIMIT 1) as haxxorz), `parent_item_id` = 47559 WHERE `item_id` = 47765 AND `expansion_id` = 3; -- Sunstrider's Leggings of Triumph -- Regalia of the Grand Vanquisher
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 47559 LIMIT 1) as haxxorz), `parent_item_id` = 47559 WHERE `item_id` = 47766 AND `expansion_id` = 3; -- Sunstrider's Robe of Triumph -- Regalia of the Grand Vanquisher
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 47559 LIMIT 1) as haxxorz), `parent_item_id` = 47559 WHERE `item_id` = 47767 AND `expansion_id` = 3; -- Sunstrider's Shoulderpads of Triumph -- Regalia of the Grand Vanquisher
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 47559 LIMIT 1) as haxxorz), `parent_item_id` = 47559 WHERE `item_id` = 48490 AND `expansion_id` = 3; -- Thassarian's Battleplate of Triumph -- Regalia of the Grand Vanquisher
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 47559 LIMIT 1) as haxxorz), `parent_item_id` = 47559 WHERE `item_id` = 48547 AND `expansion_id` = 3; -- Thassarian's Chestguard of Triumph -- Regalia of the Grand Vanquisher
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 47559 LIMIT 1) as haxxorz), `parent_item_id` = 47559 WHERE `item_id` = 48545 AND `expansion_id` = 3; -- Thassarian's Faceguard of Triumph -- Regalia of the Grand Vanquisher
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 47559 LIMIT 1) as haxxorz), `parent_item_id` = 47559 WHERE `item_id` = 48489 AND `expansion_id` = 3; -- Thassarian's Gauntlets of Triumph -- Regalia of the Grand Vanquisher
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 47559 LIMIT 1) as haxxorz), `parent_item_id` = 47559 WHERE `item_id` = 48546 AND `expansion_id` = 3; -- Thassarian's Handguards of Triumph -- Regalia of the Grand Vanquisher
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 47559 LIMIT 1) as haxxorz), `parent_item_id` = 47559 WHERE `item_id` = 48488 AND `expansion_id` = 3; -- Thassarian's Helmet of Triumph -- Regalia of the Grand Vanquisher
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 47559 LIMIT 1) as haxxorz), `parent_item_id` = 47559 WHERE `item_id` = 48544 AND `expansion_id` = 3; -- Thassarian's Legguards of Triumph -- Regalia of the Grand Vanquisher
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 47559 LIMIT 1) as haxxorz), `parent_item_id` = 47559 WHERE `item_id` = 48487 AND `expansion_id` = 3; -- Thassarian's Legplates of Triumph -- Regalia of the Grand Vanquisher
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 47559 LIMIT 1) as haxxorz), `parent_item_id` = 47559 WHERE `item_id` = 48543 AND `expansion_id` = 3; -- Thassarian's Pauldrons of Triumph -- Regalia of the Grand Vanquisher
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 47559 LIMIT 1) as haxxorz), `parent_item_id` = 47559 WHERE `item_id` = 48486 AND `expansion_id` = 3; -- Thassarian's Shoulderplates of Triumph -- Regalia of the Grand Vanquisher
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 47559 LIMIT 1) as haxxorz), `parent_item_id` = 47559 WHERE `item_id` = 48232 AND `expansion_id` = 3; -- VanCleef's Breastplate of Triumph -- Regalia of the Grand Vanquisher
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 47559 LIMIT 1) as haxxorz), `parent_item_id` = 47559 WHERE `item_id` = 48231 AND `expansion_id` = 3; -- VanCleef's Gauntlets of Triumph -- Regalia of the Grand Vanquisher
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 47559 LIMIT 1) as haxxorz), `parent_item_id` = 47559 WHERE `item_id` = 48230 AND `expansion_id` = 3; -- VanCleef's Helmet of Triumph -- Regalia of the Grand Vanquisher
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 47559 LIMIT 1) as haxxorz), `parent_item_id` = 47559 WHERE `item_id` = 48229 AND `expansion_id` = 3; -- VanCleef's Legplates of Triumph -- Regalia of the Grand Vanquisher
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 47559 LIMIT 1) as haxxorz), `parent_item_id` = 47559 WHERE `item_id` = 48228 AND `expansion_id` = 3; -- VanCleef's Pauldrons of Triumph -- Regalia of the Grand Vanquisher
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 40622 LIMIT 1) as haxxorz), `parent_item_id` = 40622 WHERE `item_id` = 39529 AND `expansion_id` = 3; -- Heroes' Mantle of Faith -- Spaulders of the Lost Conqueror
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 40622 LIMIT 1) as haxxorz), `parent_item_id` = 40622 WHERE `item_id` = 39499 AND `expansion_id` = 3; -- Heroes' Plagueheart Shoulderpads -- Spaulders of the Lost Conqueror
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 40622 LIMIT 1) as haxxorz), `parent_item_id` = 40622 WHERE `item_id` = 39642 AND `expansion_id` = 3; -- Heroes' Redemption Shoulderguards -- Spaulders of the Lost Conqueror
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 40622 LIMIT 1) as haxxorz), `parent_item_id` = 40622 WHERE `item_id` = 39637 AND `expansion_id` = 3; -- Heroes' Redemption Shoulderplates -- Spaulders of the Lost Conqueror
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 40622 LIMIT 1) as haxxorz), `parent_item_id` = 40622 WHERE `item_id` = 39631 AND `expansion_id` = 3; -- Heroes' Redemption Spaulders -- Spaulders of the Lost Conqueror
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 40622 LIMIT 1) as haxxorz), `parent_item_id` = 40622 WHERE `item_id` = 39518 AND `expansion_id` = 3; -- Heroes' Shoulderpads of Faith -- Spaulders of the Lost Conqueror
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 40623 LIMIT 1) as haxxorz), `parent_item_id` = 40623 WHERE `item_id` = 39581 AND `expansion_id` = 3; -- Heroes' Cryptstalker Spaulders -- Spaulders of the Lost Protector
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 40623 LIMIT 1) as haxxorz), `parent_item_id` = 40623 WHERE `item_id` = 39613 AND `expansion_id` = 3; -- Heroes' Dreadnaught Pauldrons -- Spaulders of the Lost Protector
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 40623 LIMIT 1) as haxxorz), `parent_item_id` = 40623 WHERE `item_id` = 39608 AND `expansion_id` = 3; -- Heroes' Dreadnaught Shoulderplates -- Spaulders of the Lost Protector
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 40623 LIMIT 1) as haxxorz), `parent_item_id` = 40623 WHERE `item_id` = 39604 AND `expansion_id` = 3; -- Heroes' Earthshatter Shoulderguards -- Spaulders of the Lost Protector
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 40623 LIMIT 1) as haxxorz), `parent_item_id` = 40623 WHERE `item_id` = 39596 AND `expansion_id` = 3; -- Heroes' Earthshatter Shoulderpads -- Spaulders of the Lost Protector
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 40623 LIMIT 1) as haxxorz), `parent_item_id` = 40623 WHERE `item_id` = 39590 AND `expansion_id` = 3; -- Heroes' Earthshatter Spaulders -- Spaulders of the Lost Protector
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 40624 LIMIT 1) as haxxorz), `parent_item_id` = 40624 WHERE `item_id` = 39565 AND `expansion_id` = 3; -- Heroes' Bonescythe Pauldrons -- Spaulders of the Lost Vanquisher
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 40624 LIMIT 1) as haxxorz), `parent_item_id` = 40624 WHERE `item_id` = 39548 AND `expansion_id` = 3; -- Heroes' Dreamwalker Mantle -- Spaulders of the Lost Vanquisher
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 40624 LIMIT 1) as haxxorz), `parent_item_id` = 40624 WHERE `item_id` = 39556 AND `expansion_id` = 3; -- Heroes' Dreamwalker Shoulderpads -- Spaulders of the Lost Vanquisher
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 40624 LIMIT 1) as haxxorz), `parent_item_id` = 40624 WHERE `item_id` = 39542 AND `expansion_id` = 3; -- Heroes' Dreamwalker Spaulders -- Spaulders of the Lost Vanquisher
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 40624 LIMIT 1) as haxxorz), `parent_item_id` = 40624 WHERE `item_id` = 39494 AND `expansion_id` = 3; -- Heroes' Frostfire Shoulderpads -- Spaulders of the Lost Vanquisher
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 40624 LIMIT 1) as haxxorz), `parent_item_id` = 40624 WHERE `item_id` = 39627 AND `expansion_id` = 3; -- Heroes' Scourgeborne Pauldrons -- Spaulders of the Lost Vanquisher
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 40624 LIMIT 1) as haxxorz), `parent_item_id` = 40624 WHERE `item_id` = 39621 AND `expansion_id` = 3; -- Heroes' Scourgeborne Shoulderplates -- Spaulders of the Lost Vanquisher
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 45659 LIMIT 1) as haxxorz), `parent_item_id` = 45659 WHERE `item_id` = 45385 AND `expansion_id` = 3; -- Valorous Aegis Shoulderguards -- Spaulders of the Wayward Conqueror
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 45659 LIMIT 1) as haxxorz), `parent_item_id` = 45659 WHERE `item_id` = 45380 AND `expansion_id` = 3; -- Valorous Aegis Shoulderplates -- Spaulders of the Wayward Conqueror
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 45659 LIMIT 1) as haxxorz), `parent_item_id` = 45659 WHERE `item_id` = 45373 AND `expansion_id` = 3; -- Valorous Aegis Spaulders -- Spaulders of the Wayward Conqueror
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 45659 LIMIT 1) as haxxorz), `parent_item_id` = 45659 WHERE `item_id` = 45422 AND `expansion_id` = 3; -- Valorous Deathbringer Shoulderpads -- Spaulders of the Wayward Conqueror
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 45659 LIMIT 1) as haxxorz), `parent_item_id` = 45659 WHERE `item_id` = 45393 AND `expansion_id` = 3; -- Valorous Mantle of Sanctification -- Spaulders of the Wayward Conqueror
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 45659 LIMIT 1) as haxxorz), `parent_item_id` = 45659 WHERE `item_id` = 45390 AND `expansion_id` = 3; -- Valorous Shoulderpads of Sanctification -- Spaulders of the Wayward Conqueror
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 45660 LIMIT 1) as haxxorz), `parent_item_id` = 45660 WHERE `item_id` = 45363 AND `expansion_id` = 3; -- Valorous Scourgestalker Spaulders -- Spaulders of the Wayward Protector
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 45660 LIMIT 1) as haxxorz), `parent_item_id` = 45660 WHERE `item_id` = 45428 AND `expansion_id` = 3; -- Valorous Siegebreaker Pauldrons -- Spaulders of the Wayward Protector
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 45660 LIMIT 1) as haxxorz), `parent_item_id` = 45660 WHERE `item_id` = 45433 AND `expansion_id` = 3; -- Valorous Siegebreaker Shoulderplates -- Spaulders of the Wayward Protector
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 45660 LIMIT 1) as haxxorz), `parent_item_id` = 45660 WHERE `item_id` = 45415 AND `expansion_id` = 3; -- Valorous Worldbreaker Shoulderguards -- Spaulders of the Wayward Protector
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 45660 LIMIT 1) as haxxorz), `parent_item_id` = 45660 WHERE `item_id` = 45410 AND `expansion_id` = 3; -- Valorous Worldbreaker Shoulderpads -- Spaulders of the Wayward Protector
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 45660 LIMIT 1) as haxxorz), `parent_item_id` = 45660 WHERE `item_id` = 45404 AND `expansion_id` = 3; -- Valorous Worldbreaker Spaulders -- Spaulders of the Wayward Protector
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 45661 LIMIT 1) as haxxorz), `parent_item_id` = 45661 WHERE `item_id` = 45339 AND `expansion_id` = 3; -- Valorous Darkruned Pauldrons -- Spaulders of the Wayward Vanquisher
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 45661 LIMIT 1) as haxxorz), `parent_item_id` = 45661 WHERE `item_id` = 45344 AND `expansion_id` = 3; -- Valorous Darkruned Shoulderplates -- Spaulders of the Wayward Vanquisher
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 45661 LIMIT 1) as haxxorz), `parent_item_id` = 45661 WHERE `item_id` = 45369 AND `expansion_id` = 3; -- Valorous Kirin Tor Shoulderpads -- Spaulders of the Wayward Vanquisher
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 45661 LIMIT 1) as haxxorz), `parent_item_id` = 45661 WHERE `item_id` = 45352 AND `expansion_id` = 3; -- Valorous Nightsong Mantle -- Spaulders of the Wayward Vanquisher
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 45661 LIMIT 1) as haxxorz), `parent_item_id` = 45661 WHERE `item_id` = 45359 AND `expansion_id` = 3; -- Valorous Nightsong Shoulderpads -- Spaulders of the Wayward Vanquisher
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 45661 LIMIT 1) as haxxorz), `parent_item_id` = 45661 WHERE `item_id` = 45349 AND `expansion_id` = 3; -- Valorous Nightsong Spaulders -- Spaulders of the Wayward Vanquisher
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 45661 LIMIT 1) as haxxorz), `parent_item_id` = 45661 WHERE `item_id` = 45400 AND `expansion_id` = 3; -- Valorous Terrorblade Pauldrons -- Spaulders of the Wayward Vanquisher
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 47242 LIMIT 1) as haxxorz), `parent_item_id` = 47242 WHERE `item_id` = 48242 AND `expansion_id` = 3; -- Garona's Breastplate of Triumph -- Trophy of the Crusade
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 47242 LIMIT 1) as haxxorz), `parent_item_id` = 47242 WHERE `item_id` = 48241 AND `expansion_id` = 3; -- Garona's Gauntlets of Triumph -- Trophy of the Crusade
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 47242 LIMIT 1) as haxxorz), `parent_item_id` = 47242 WHERE `item_id` = 48240 AND `expansion_id` = 3; -- Garona's Helmet of Triumph -- Trophy of the Crusade
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 47242 LIMIT 1) as haxxorz), `parent_item_id` = 47242 WHERE `item_id` = 48239 AND `expansion_id` = 3; -- Garona's Legplates of Triumph -- Trophy of the Crusade
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 47242 LIMIT 1) as haxxorz), `parent_item_id` = 47242 WHERE `item_id` = 48238 AND `expansion_id` = 3; -- Garona's Pauldrons of Triumph -- Trophy of the Crusade
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 47242 LIMIT 1) as haxxorz), `parent_item_id` = 47242 WHERE `item_id` = 47803 AND `expansion_id` = 3; -- Gul'dan's Gloves of Triumph -- Trophy of the Crusade
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 47242 LIMIT 1) as haxxorz), `parent_item_id` = 47242 WHERE `item_id` = 47804 AND `expansion_id` = 3; -- Gul'dan's Hood of Triumph -- Trophy of the Crusade
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 47242 LIMIT 1) as haxxorz), `parent_item_id` = 47242 WHERE `item_id` = 47805 AND `expansion_id` = 3; -- Gul'dan's Leggings of Triumph -- Trophy of the Crusade
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 47242 LIMIT 1) as haxxorz), `parent_item_id` = 47242 WHERE `item_id` = 47806 AND `expansion_id` = 3; -- Gul'dan's Robe of Triumph -- Trophy of the Crusade
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 47242 LIMIT 1) as haxxorz), `parent_item_id` = 47242 WHERE `item_id` = 47807 AND `expansion_id` = 3; -- Gul'dan's Shoulderpads of Triumph -- Trophy of the Crusade
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 47242 LIMIT 1) as haxxorz), `parent_item_id` = 47242 WHERE `item_id` = 48391 AND `expansion_id` = 3; -- Hellscream's Battleplate of Triumph -- Trophy of the Crusade
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 47242 LIMIT 1) as haxxorz), `parent_item_id` = 47242 WHERE `item_id` = 48461 AND `expansion_id` = 3; -- Hellscream's Breastplate of Triumph -- Trophy of the Crusade
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 47242 LIMIT 1) as haxxorz), `parent_item_id` = 47242 WHERE `item_id` = 48392 AND `expansion_id` = 3; -- Hellscream's Gauntlets of Triumph -- Trophy of the Crusade
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 47242 LIMIT 1) as haxxorz), `parent_item_id` = 47242 WHERE `item_id` = 48463 AND `expansion_id` = 3; -- Hellscream's Greathelm of Triumph -- Trophy of the Crusade
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 47242 LIMIT 1) as haxxorz), `parent_item_id` = 47242 WHERE `item_id` = 48462 AND `expansion_id` = 3; -- Hellscream's Handguards of Triumph -- Trophy of the Crusade
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 47242 LIMIT 1) as haxxorz), `parent_item_id` = 47242 WHERE `item_id` = 48393 AND `expansion_id` = 3; -- Hellscream's Helmet of Triumph -- Trophy of the Crusade
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 47242 LIMIT 1) as haxxorz), `parent_item_id` = 47242 WHERE `item_id` = 48464 AND `expansion_id` = 3; -- Hellscream's Legguards of Triumph -- Trophy of the Crusade
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 47242 LIMIT 1) as haxxorz), `parent_item_id` = 47242 WHERE `item_id` = 48394 AND `expansion_id` = 3; -- Hellscream's Legplates of Triumph -- Trophy of the Crusade
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 47242 LIMIT 1) as haxxorz), `parent_item_id` = 47242 WHERE `item_id` = 48465 AND `expansion_id` = 3; -- Hellscream's Pauldrons of Triumph -- Trophy of the Crusade
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 47242 LIMIT 1) as haxxorz), `parent_item_id` = 47242 WHERE `item_id` = 48395 AND `expansion_id` = 3; -- Hellscream's Shoulderplates of Triumph -- Trophy of the Crusade
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 47242 LIMIT 1) as haxxorz), `parent_item_id` = 47242 WHERE `item_id` = 47782 AND `expansion_id` = 3; -- Kel'Thuzad's Gloves of Triumph -- Trophy of the Crusade
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 47242 LIMIT 1) as haxxorz), `parent_item_id` = 47242 WHERE `item_id` = 47778 AND `expansion_id` = 3; -- Kel'Thuzad's Hood of Triumph -- Trophy of the Crusade
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 47242 LIMIT 1) as haxxorz), `parent_item_id` = 47242 WHERE `item_id` = 47780 AND `expansion_id` = 3; -- Kel'Thuzad's Leggings of Triumph -- Trophy of the Crusade
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 47242 LIMIT 1) as haxxorz), `parent_item_id` = 47242 WHERE `item_id` = 47779 AND `expansion_id` = 3; -- Kel'Thuzad's Robe of Triumph -- Trophy of the Crusade
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 47242 LIMIT 1) as haxxorz), `parent_item_id` = 47242 WHERE `item_id` = 47781 AND `expansion_id` = 3; -- Kel'Thuzad's Shoulderpads of Triumph -- Trophy of the Crusade
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 47242 LIMIT 1) as haxxorz), `parent_item_id` = 47242 WHERE `item_id` = 47753 AND `expansion_id` = 3; -- Khadgar's Gauntlets of Triumph -- Trophy of the Crusade
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 47242 LIMIT 1) as haxxorz), `parent_item_id` = 47242 WHERE `item_id` = 47754 AND `expansion_id` = 3; -- Khadgar's Hood of Triumph -- Trophy of the Crusade
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 47242 LIMIT 1) as haxxorz), `parent_item_id` = 47242 WHERE `item_id` = 47755 AND `expansion_id` = 3; -- Khadgar's Leggings of Triumph -- Trophy of the Crusade
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 47242 LIMIT 1) as haxxorz), `parent_item_id` = 47242 WHERE `item_id` = 47756 AND `expansion_id` = 3; -- Khadgar's Robe of Triumph -- Trophy of the Crusade
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 47242 LIMIT 1) as haxxorz), `parent_item_id` = 47242 WHERE `item_id` = 47757 AND `expansion_id` = 3; -- Khadgar's Shoulderpads of Triumph -- Trophy of the Crusade
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 47242 LIMIT 1) as haxxorz), `parent_item_id` = 47242 WHERE `item_id` = 48500 AND `expansion_id` = 3; -- Koltira's Battleplate of Triumph -- Trophy of the Crusade
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 47242 LIMIT 1) as haxxorz), `parent_item_id` = 47242 WHERE `item_id` = 48557 AND `expansion_id` = 3; -- Koltira's Chestguard of Triumph -- Trophy of the Crusade
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 47242 LIMIT 1) as haxxorz), `parent_item_id` = 47242 WHERE `item_id` = 48555 AND `expansion_id` = 3; -- Koltira's Faceguard of Triumph -- Trophy of the Crusade
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 47242 LIMIT 1) as haxxorz), `parent_item_id` = 47242 WHERE `item_id` = 48499 AND `expansion_id` = 3; -- Koltira's Gauntlets of Triumph -- Trophy of the Crusade
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 47242 LIMIT 1) as haxxorz), `parent_item_id` = 47242 WHERE `item_id` = 48556 AND `expansion_id` = 3; -- Koltira's Handguards of Triumph -- Trophy of the Crusade
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 47242 LIMIT 1) as haxxorz), `parent_item_id` = 47242 WHERE `item_id` = 48498 AND `expansion_id` = 3; -- Koltira's Helmet of Triumph -- Trophy of the Crusade
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 47242 LIMIT 1) as haxxorz), `parent_item_id` = 47242 WHERE `item_id` = 48554 AND `expansion_id` = 3; -- Koltira's Legguards of Triumph -- Trophy of the Crusade
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 47242 LIMIT 1) as haxxorz), `parent_item_id` = 47242 WHERE `item_id` = 48497 AND `expansion_id` = 3; -- Koltira's Legplates of Triumph -- Trophy of the Crusade
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 47242 LIMIT 1) as haxxorz), `parent_item_id` = 47242 WHERE `item_id` = 48553 AND `expansion_id` = 3; -- Koltira's Pauldrons of Triumph -- Trophy of the Crusade
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 47242 LIMIT 1) as haxxorz), `parent_item_id` = 47242 WHERE `item_id` = 48496 AND `expansion_id` = 3; -- Koltira's Shoulderplates of Triumph -- Trophy of the Crusade
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 47242 LIMIT 1) as haxxorz), `parent_item_id` = 47242 WHERE `item_id` = 48626 AND `expansion_id` = 3; -- Liadrin's Battleplate of Triumph -- Trophy of the Crusade
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 47242 LIMIT 1) as haxxorz), `parent_item_id` = 47242 WHERE `item_id` = 48657 AND `expansion_id` = 3; -- Liadrin's Breastplate of Triumph -- Trophy of the Crusade
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 47242 LIMIT 1) as haxxorz), `parent_item_id` = 47242 WHERE `item_id` = 48659 AND `expansion_id` = 3; -- Liadrin's Faceguard of Triumph -- Trophy of the Crusade
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 47242 LIMIT 1) as haxxorz), `parent_item_id` = 47242 WHERE `item_id` = 48625 AND `expansion_id` = 3; -- Liadrin's Gauntlets of Triumph -- Trophy of the Crusade
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 47242 LIMIT 1) as haxxorz), `parent_item_id` = 47242 WHERE `item_id` = 48593 AND `expansion_id` = 3; -- Liadrin's Gloves of Triumph -- Trophy of the Crusade
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 47242 LIMIT 1) as haxxorz), `parent_item_id` = 47242 WHERE `item_id` = 48591 AND `expansion_id` = 3; -- Liadrin's Greaves of Triumph -- Trophy of the Crusade
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 47242 LIMIT 1) as haxxorz), `parent_item_id` = 47242 WHERE `item_id` = 48658 AND `expansion_id` = 3; -- Liadrin's Handguards of Triumph -- Trophy of the Crusade
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 47242 LIMIT 1) as haxxorz), `parent_item_id` = 47242 WHERE `item_id` = 48592 AND `expansion_id` = 3; -- Liadrin's Headpiece of Triumph -- Trophy of the Crusade
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 47242 LIMIT 1) as haxxorz), `parent_item_id` = 47242 WHERE `item_id` = 48624 AND `expansion_id` = 3; -- Liadrin's Helm of Triumph -- Trophy of the Crusade
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 47242 LIMIT 1) as haxxorz), `parent_item_id` = 47242 WHERE `item_id` = 48660 AND `expansion_id` = 3; -- Liadrin's Legguards of Triumph -- Trophy of the Crusade
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 47242 LIMIT 1) as haxxorz), `parent_item_id` = 47242 WHERE `item_id` = 48623 AND `expansion_id` = 3; -- Liadrin's Legplates of Triumph -- Trophy of the Crusade
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 47242 LIMIT 1) as haxxorz), `parent_item_id` = 47242 WHERE `item_id` = 48661 AND `expansion_id` = 3; -- Liadrin's Shoulderguards of Triumph -- Trophy of the Crusade
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 47242 LIMIT 1) as haxxorz), `parent_item_id` = 47242 WHERE `item_id` = 48622 AND `expansion_id` = 3; -- Liadrin's Shoulderplates of Triumph -- Trophy of the Crusade
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 47242 LIMIT 1) as haxxorz), `parent_item_id` = 47242 WHERE `item_id` = 48590 AND `expansion_id` = 3; -- Liadrin's Spaulders of Triumph -- Trophy of the Crusade
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 47242 LIMIT 1) as haxxorz), `parent_item_id` = 47242 WHERE `item_id` = 48594 AND `expansion_id` = 3; -- Liadrin's Tunic of Triumph -- Trophy of the Crusade
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 47242 LIMIT 1) as haxxorz), `parent_item_id` = 47242 WHERE `item_id` = 48164 AND `expansion_id` = 3; -- Malfurion's Cover of Triumph -- Trophy of the Crusade
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 47242 LIMIT 1) as haxxorz), `parent_item_id` = 47242 WHERE `item_id` = 48163 AND `expansion_id` = 3; -- Malfurion's Gloves of Triumph -- Trophy of the Crusade
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 47242 LIMIT 1) as haxxorz), `parent_item_id` = 47242 WHERE `item_id` = 48212 AND `expansion_id` = 3; -- Malfurion's Handgrips of Triumph -- Trophy of the Crusade
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 47242 LIMIT 1) as haxxorz), `parent_item_id` = 47242 WHERE `item_id` = 48133 AND `expansion_id` = 3; -- Malfurion's Handguards of Triumph -- Trophy of the Crusade
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 47242 LIMIT 1) as haxxorz), `parent_item_id` = 47242 WHERE `item_id` = 48211 AND `expansion_id` = 3; -- Malfurion's Headguard of Triumph -- Trophy of the Crusade
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 47242 LIMIT 1) as haxxorz), `parent_item_id` = 47242 WHERE `item_id` = 48134 AND `expansion_id` = 3; -- Malfurion's Headpiece of Triumph -- Trophy of the Crusade
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 47242 LIMIT 1) as haxxorz), `parent_item_id` = 47242 WHERE `item_id` = 48135 AND `expansion_id` = 3; -- Malfurion's Leggings of Triumph -- Trophy of the Crusade
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 47242 LIMIT 1) as haxxorz), `parent_item_id` = 47242 WHERE `item_id` = 48210 AND `expansion_id` = 3; -- Malfurion's Legguards of Triumph -- Trophy of the Crusade
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 47242 LIMIT 1) as haxxorz), `parent_item_id` = 47242 WHERE `item_id` = 48167 AND `expansion_id` = 3; -- Malfurion's Mantle of Triumph -- Trophy of the Crusade
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 47242 LIMIT 1) as haxxorz), `parent_item_id` = 47242 WHERE `item_id` = 48209 AND `expansion_id` = 3; -- Malfurion's Raiments of Triumph -- Trophy of the Crusade
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 47242 LIMIT 1) as haxxorz), `parent_item_id` = 47242 WHERE `item_id` = 48136 AND `expansion_id` = 3; -- Malfurion's Robe of Triumph -- Trophy of the Crusade
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 47242 LIMIT 1) as haxxorz), `parent_item_id` = 47242 WHERE `item_id` = 48208 AND `expansion_id` = 3; -- Malfurion's Shoulderpads of Triumph -- Trophy of the Crusade
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 47242 LIMIT 1) as haxxorz), `parent_item_id` = 47242 WHERE `item_id` = 48137 AND `expansion_id` = 3; -- Malfurion's Spaulders of Triumph -- Trophy of the Crusade
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 47242 LIMIT 1) as haxxorz), `parent_item_id` = 47242 WHERE `item_id` = 48165 AND `expansion_id` = 3; -- Malfurion's Trousers of Triumph -- Trophy of the Crusade
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 47242 LIMIT 1) as haxxorz), `parent_item_id` = 47242 WHERE `item_id` = 48166 AND `expansion_id` = 3; -- Malfurion's Vestments of Triumph -- Trophy of the Crusade
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 47242 LIMIT 1) as haxxorz), `parent_item_id` = 47242 WHERE `item_id` = 48346 AND `expansion_id` = 3; -- Nobundo's Chestguard of Triumph -- Trophy of the Crusade
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 47242 LIMIT 1) as haxxorz), `parent_item_id` = 47242 WHERE `item_id` = 48348 AND `expansion_id` = 3; -- Nobundo's Faceguard of Triumph -- Trophy of the Crusade
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 47242 LIMIT 1) as haxxorz), `parent_item_id` = 47242 WHERE `item_id` = 48317 AND `expansion_id` = 3; -- Nobundo's Gloves of Triumph -- Trophy of the Crusade
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 47242 LIMIT 1) as haxxorz), `parent_item_id` = 47242 WHERE `item_id` = 48347 AND `expansion_id` = 3; -- Nobundo's Grips of Triumph -- Trophy of the Crusade
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 47242 LIMIT 1) as haxxorz), `parent_item_id` = 47242 WHERE `item_id` = 48286 AND `expansion_id` = 3; -- Nobundo's Handguards of Triumph -- Trophy of the Crusade
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 47242 LIMIT 1) as haxxorz), `parent_item_id` = 47242 WHERE `item_id` = 48316 AND `expansion_id` = 3; -- Nobundo's Hauberk of Triumph -- Trophy of the Crusade
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 47242 LIMIT 1) as haxxorz), `parent_item_id` = 47242 WHERE `item_id` = 48287 AND `expansion_id` = 3; -- Nobundo's Headpiece of Triumph -- Trophy of the Crusade
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 47242 LIMIT 1) as haxxorz), `parent_item_id` = 47242 WHERE `item_id` = 48318 AND `expansion_id` = 3; -- Nobundo's Helm of Triumph -- Trophy of the Crusade
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 47242 LIMIT 1) as haxxorz), `parent_item_id` = 47242 WHERE `item_id` = 48319 AND `expansion_id` = 3; -- Nobundo's Kilt of Triumph -- Trophy of the Crusade
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 47242 LIMIT 1) as haxxorz), `parent_item_id` = 47242 WHERE `item_id` = 48288 AND `expansion_id` = 3; -- Nobundo's Legguards of Triumph -- Trophy of the Crusade
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 47242 LIMIT 1) as haxxorz), `parent_item_id` = 47242 WHERE `item_id` = 48350 AND `expansion_id` = 3; -- Nobundo's Shoulderguards of Triumph -- Trophy of the Crusade
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 47242 LIMIT 1) as haxxorz), `parent_item_id` = 47242 WHERE `item_id` = 48320 AND `expansion_id` = 3; -- Nobundo's Shoulderpads of Triumph -- Trophy of the Crusade
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 47242 LIMIT 1) as haxxorz), `parent_item_id` = 47242 WHERE `item_id` = 48289 AND `expansion_id` = 3; -- Nobundo's Spaulders of Triumph -- Trophy of the Crusade
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 47242 LIMIT 1) as haxxorz), `parent_item_id` = 47242 WHERE `item_id` = 48285 AND `expansion_id` = 3; -- Nobundo's Tunic of Triumph -- Trophy of the Crusade
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 47242 LIMIT 1) as haxxorz), `parent_item_id` = 47242 WHERE `item_id` = 48349 AND `expansion_id` = 3; -- Nobundo's War-Kilt of Triumph -- Trophy of the Crusade
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 47242 LIMIT 1) as haxxorz), `parent_item_id` = 47242 WHERE `item_id` = 48181 AND `expansion_id` = 3; -- Runetotem's Cover of Triumph -- Trophy of the Crusade
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 47242 LIMIT 1) as haxxorz), `parent_item_id` = 47242 WHERE `item_id` = 48182 AND `expansion_id` = 3; -- Runetotem's Gloves of Triumph -- Trophy of the Crusade
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 47242 LIMIT 1) as haxxorz), `parent_item_id` = 47242 WHERE `item_id` = 48193 AND `expansion_id` = 3; -- Runetotem's Handgrips of Triumph -- Trophy of the Crusade
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 47242 LIMIT 1) as haxxorz), `parent_item_id` = 47242 WHERE `item_id` = 48152 AND `expansion_id` = 3; -- Runetotem's Handguards of Triumph -- Trophy of the Crusade
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 47242 LIMIT 1) as haxxorz), `parent_item_id` = 47242 WHERE `item_id` = 48194 AND `expansion_id` = 3; -- Runetotem's Headguard of Triumph -- Trophy of the Crusade
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 47242 LIMIT 1) as haxxorz), `parent_item_id` = 47242 WHERE `item_id` = 48151 AND `expansion_id` = 3; -- Runetotem's Headpiece of Triumph -- Trophy of the Crusade
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 47242 LIMIT 1) as haxxorz), `parent_item_id` = 47242 WHERE `item_id` = 48150 AND `expansion_id` = 3; -- Runetotem's Leggings of Triumph -- Trophy of the Crusade
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 47242 LIMIT 1) as haxxorz), `parent_item_id` = 47242 WHERE `item_id` = 48195 AND `expansion_id` = 3; -- Runetotem's Legguards of Triumph -- Trophy of the Crusade
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 47242 LIMIT 1) as haxxorz), `parent_item_id` = 47242 WHERE `item_id` = 48178 AND `expansion_id` = 3; -- Runetotem's Mantle of Triumph -- Trophy of the Crusade
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 47242 LIMIT 1) as haxxorz), `parent_item_id` = 47242 WHERE `item_id` = 48196 AND `expansion_id` = 3; -- Runetotem's Raiments of Triumph -- Trophy of the Crusade
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 47242 LIMIT 1) as haxxorz), `parent_item_id` = 47242 WHERE `item_id` = 48149 AND `expansion_id` = 3; -- Runetotem's Robe of Triumph -- Trophy of the Crusade
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 47242 LIMIT 1) as haxxorz), `parent_item_id` = 47242 WHERE `item_id` = 48197 AND `expansion_id` = 3; -- Runetotem's Shoulderpads of Triumph -- Trophy of the Crusade
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 47242 LIMIT 1) as haxxorz), `parent_item_id` = 47242 WHERE `item_id` = 48148 AND `expansion_id` = 3; -- Runetotem's Spaulders of Triumph -- Trophy of the Crusade
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 47242 LIMIT 1) as haxxorz), `parent_item_id` = 47242 WHERE `item_id` = 48180 AND `expansion_id` = 3; -- Runetotem's Trousers of Triumph -- Trophy of the Crusade
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 47242 LIMIT 1) as haxxorz), `parent_item_id` = 47242 WHERE `item_id` = 48179 AND `expansion_id` = 3; -- Runetotem's Vestments of Triumph -- Trophy of the Crusade
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 47242 LIMIT 1) as haxxorz), `parent_item_id` = 47242 WHERE `item_id` = 47772 AND `expansion_id` = 3; -- Sunstrider's Gauntlets of Triumph -- Trophy of the Crusade
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 47242 LIMIT 1) as haxxorz), `parent_item_id` = 47242 WHERE `item_id` = 47771 AND `expansion_id` = 3; -- Sunstrider's Hood of Triumph -- Trophy of the Crusade
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 47242 LIMIT 1) as haxxorz), `parent_item_id` = 47242 WHERE `item_id` = 47770 AND `expansion_id` = 3; -- Sunstrider's Leggings of Triumph -- Trophy of the Crusade
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 47242 LIMIT 1) as haxxorz), `parent_item_id` = 47242 WHERE `item_id` = 47769 AND `expansion_id` = 3; -- Sunstrider's Robe of Triumph -- Trophy of the Crusade
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 47242 LIMIT 1) as haxxorz), `parent_item_id` = 47242 WHERE `item_id` = 47768 AND `expansion_id` = 3; -- Sunstrider's Shoulderpads of Triumph -- Trophy of the Crusade
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 47242 LIMIT 1) as haxxorz), `parent_item_id` = 47242 WHERE `item_id` = 48481 AND `expansion_id` = 3; -- Thassarian's Battleplate of Triumph -- Trophy of the Crusade
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 47242 LIMIT 1) as haxxorz), `parent_item_id` = 47242 WHERE `item_id` = 48538 AND `expansion_id` = 3; -- Thassarian's Chestguard of Triumph -- Trophy of the Crusade
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 47242 LIMIT 1) as haxxorz), `parent_item_id` = 47242 WHERE `item_id` = 48540 AND `expansion_id` = 3; -- Thassarian's Faceguard of Triumph -- Trophy of the Crusade
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 47242 LIMIT 1) as haxxorz), `parent_item_id` = 47242 WHERE `item_id` = 48482 AND `expansion_id` = 3; -- Thassarian's Gauntlets of Triumph -- Trophy of the Crusade
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 47242 LIMIT 1) as haxxorz), `parent_item_id` = 47242 WHERE `item_id` = 48539 AND `expansion_id` = 3; -- Thassarian's Handguards of Triumph -- Trophy of the Crusade
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 47242 LIMIT 1) as haxxorz), `parent_item_id` = 47242 WHERE `item_id` = 48483 AND `expansion_id` = 3; -- Thassarian's Helmet of Triumph -- Trophy of the Crusade
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 47242 LIMIT 1) as haxxorz), `parent_item_id` = 47242 WHERE `item_id` = 48541 AND `expansion_id` = 3; -- Thassarian's Legguards of Triumph -- Trophy of the Crusade
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 47242 LIMIT 1) as haxxorz), `parent_item_id` = 47242 WHERE `item_id` = 48484 AND `expansion_id` = 3; -- Thassarian's Legplates of Triumph -- Trophy of the Crusade
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 47242 LIMIT 1) as haxxorz), `parent_item_id` = 47242 WHERE `item_id` = 48542 AND `expansion_id` = 3; -- Thassarian's Pauldrons of Triumph -- Trophy of the Crusade
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 47242 LIMIT 1) as haxxorz), `parent_item_id` = 47242 WHERE `item_id` = 48485 AND `expansion_id` = 3; -- Thassarian's Shoulderplates of Triumph -- Trophy of the Crusade
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 47242 LIMIT 1) as haxxorz), `parent_item_id` = 47242 WHERE `item_id` = 48365 AND `expansion_id` = 3; -- Thrall's Chestguard of Triumph -- Trophy of the Crusade
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 47242 LIMIT 1) as haxxorz), `parent_item_id` = 47242 WHERE `item_id` = 48363 AND `expansion_id` = 3; -- Thrall's Faceguard of Triumph -- Trophy of the Crusade
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 47242 LIMIT 1) as haxxorz), `parent_item_id` = 47242 WHERE `item_id` = 48334 AND `expansion_id` = 3; -- Thrall's Gloves of Triumph -- Trophy of the Crusade
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 47242 LIMIT 1) as haxxorz), `parent_item_id` = 47242 WHERE `item_id` = 48364 AND `expansion_id` = 3; -- Thrall's Grips of Triumph -- Trophy of the Crusade
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 47242 LIMIT 1) as haxxorz), `parent_item_id` = 47242 WHERE `item_id` = 48301 AND `expansion_id` = 3; -- Thrall's Handguards of Triumph -- Trophy of the Crusade
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 47242 LIMIT 1) as haxxorz), `parent_item_id` = 47242 WHERE `item_id` = 48335 AND `expansion_id` = 3; -- Thrall's Hauberk of Triumph -- Trophy of the Crusade
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 47242 LIMIT 1) as haxxorz), `parent_item_id` = 47242 WHERE `item_id` = 48302 AND `expansion_id` = 3; -- Thrall's Headpiece of Triumph -- Trophy of the Crusade
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 47242 LIMIT 1) as haxxorz), `parent_item_id` = 47242 WHERE `item_id` = 48333 AND `expansion_id` = 3; -- Thrall's Helm of Triumph -- Trophy of the Crusade
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 47242 LIMIT 1) as haxxorz), `parent_item_id` = 47242 WHERE `item_id` = 48332 AND `expansion_id` = 3; -- Thrall's Kilt of Triumph -- Trophy of the Crusade
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 47242 LIMIT 1) as haxxorz), `parent_item_id` = 47242 WHERE `item_id` = 48303 AND `expansion_id` = 3; -- Thrall's Legguards of Triumph -- Trophy of the Crusade
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 47242 LIMIT 1) as haxxorz), `parent_item_id` = 47242 WHERE `item_id` = 48361 AND `expansion_id` = 3; -- Thrall's Shoulderguards of Triumph -- Trophy of the Crusade
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 47242 LIMIT 1) as haxxorz), `parent_item_id` = 47242 WHERE `item_id` = 48331 AND `expansion_id` = 3; -- Thrall's Shoulderpads of Triumph -- Trophy of the Crusade
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 47242 LIMIT 1) as haxxorz), `parent_item_id` = 47242 WHERE `item_id` = 48304 AND `expansion_id` = 3; -- Thrall's Spaulders of Triumph -- Trophy of the Crusade
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 47242 LIMIT 1) as haxxorz), `parent_item_id` = 47242 WHERE `item_id` = 48300 AND `expansion_id` = 3; -- Thrall's Tunic of Triumph -- Trophy of the Crusade
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 47242 LIMIT 1) as haxxorz), `parent_item_id` = 47242 WHERE `item_id` = 48362 AND `expansion_id` = 3; -- Thrall's War-Kilt of Triumph -- Trophy of the Crusade
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 47242 LIMIT 1) as haxxorz), `parent_item_id` = 47242 WHERE `item_id` = 48607 AND `expansion_id` = 3; -- Turalyon's Battleplate of Triumph -- Trophy of the Crusade
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 47242 LIMIT 1) as haxxorz), `parent_item_id` = 47242 WHERE `item_id` = 48641 AND `expansion_id` = 3; -- Turalyon's Breastplate of Triumph -- Trophy of the Crusade
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 47242 LIMIT 1) as haxxorz), `parent_item_id` = 47242 WHERE `item_id` = 48639 AND `expansion_id` = 3; -- Turalyon's Faceguard of Triumph -- Trophy of the Crusade
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 47242 LIMIT 1) as haxxorz), `parent_item_id` = 47242 WHERE `item_id` = 48608 AND `expansion_id` = 3; -- Turalyon's Gauntlets of Triumph -- Trophy of the Crusade
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 47242 LIMIT 1) as haxxorz), `parent_item_id` = 47242 WHERE `item_id` = 48576 AND `expansion_id` = 3; -- Turalyon's Gloves of Triumph -- Trophy of the Crusade
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 47242 LIMIT 1) as haxxorz), `parent_item_id` = 47242 WHERE `item_id` = 48578 AND `expansion_id` = 3; -- Turalyon's Greaves of Triumph -- Trophy of the Crusade
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 47242 LIMIT 1) as haxxorz), `parent_item_id` = 47242 WHERE `item_id` = 48640 AND `expansion_id` = 3; -- Turalyon's Handguards of Triumph -- Trophy of the Crusade
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 47242 LIMIT 1) as haxxorz), `parent_item_id` = 47242 WHERE `item_id` = 48577 AND `expansion_id` = 3; -- Turalyon's Headpiece of Triumph -- Trophy of the Crusade
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 47242 LIMIT 1) as haxxorz), `parent_item_id` = 47242 WHERE `item_id` = 48609 AND `expansion_id` = 3; -- Turalyon's Helm of Triumph -- Trophy of the Crusade
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 47242 LIMIT 1) as haxxorz), `parent_item_id` = 47242 WHERE `item_id` = 48638 AND `expansion_id` = 3; -- Turalyon's Legguards of Triumph -- Trophy of the Crusade
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 47242 LIMIT 1) as haxxorz), `parent_item_id` = 47242 WHERE `item_id` = 48610 AND `expansion_id` = 3; -- Turalyon's Legplates of Triumph -- Trophy of the Crusade
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 47242 LIMIT 1) as haxxorz), `parent_item_id` = 47242 WHERE `item_id` = 48637 AND `expansion_id` = 3; -- Turalyon's Shoulderguards of Triumph -- Trophy of the Crusade
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 47242 LIMIT 1) as haxxorz), `parent_item_id` = 47242 WHERE `item_id` = 48611 AND `expansion_id` = 3; -- Turalyon's Shoulderplates of Triumph -- Trophy of the Crusade
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 47242 LIMIT 1) as haxxorz), `parent_item_id` = 47242 WHERE `item_id` = 48579 AND `expansion_id` = 3; -- Turalyon's Spaulders of Triumph -- Trophy of the Crusade
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 47242 LIMIT 1) as haxxorz), `parent_item_id` = 47242 WHERE `item_id` = 48575 AND `expansion_id` = 3; -- Turalyon's Tunic of Triumph -- Trophy of the Crusade
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 47242 LIMIT 1) as haxxorz), `parent_item_id` = 47242 WHERE `item_id` = 48223 AND `expansion_id` = 3; -- VanCleef's Breastplate of Triumph -- Trophy of the Crusade
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 47242 LIMIT 1) as haxxorz), `parent_item_id` = 47242 WHERE `item_id` = 48224 AND `expansion_id` = 3; -- VanCleef's Gauntlets of Triumph -- Trophy of the Crusade
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 47242 LIMIT 1) as haxxorz), `parent_item_id` = 47242 WHERE `item_id` = 48225 AND `expansion_id` = 3; -- VanCleef's Helmet of Triumph -- Trophy of the Crusade
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 47242 LIMIT 1) as haxxorz), `parent_item_id` = 47242 WHERE `item_id` = 48226 AND `expansion_id` = 3; -- VanCleef's Legplates of Triumph -- Trophy of the Crusade
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 47242 LIMIT 1) as haxxorz), `parent_item_id` = 47242 WHERE `item_id` = 48227 AND `expansion_id` = 3; -- VanCleef's Pauldrons of Triumph -- Trophy of the Crusade
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 47242 LIMIT 1) as haxxorz), `parent_item_id` = 47242 WHERE `item_id` = 48078 AND `expansion_id` = 3; -- Velen's Circlet of Triumph -- Trophy of the Crusade
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 47242 LIMIT 1) as haxxorz), `parent_item_id` = 47242 WHERE `item_id` = 47984 AND `expansion_id` = 3; -- Velen's Cowl of Triumph -- Trophy of the Crusade
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 47242 LIMIT 1) as haxxorz), `parent_item_id` = 47242 WHERE `item_id` = 47983 AND `expansion_id` = 3; -- Velen's Gloves of Triumph -- Trophy of the Crusade
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 47242 LIMIT 1) as haxxorz), `parent_item_id` = 47242 WHERE `item_id` = 48077 AND `expansion_id` = 3; -- Velen's Handwraps of Triumph -- Trophy of the Crusade
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 47242 LIMIT 1) as haxxorz), `parent_item_id` = 47242 WHERE `item_id` = 47985 AND `expansion_id` = 3; -- Velen's Leggings of Triumph -- Trophy of the Crusade
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 47242 LIMIT 1) as haxxorz), `parent_item_id` = 47242 WHERE `item_id` = 48081 AND `expansion_id` = 3; -- Velen's Mantle of Triumph -- Trophy of the Crusade
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 47242 LIMIT 1) as haxxorz), `parent_item_id` = 47242 WHERE `item_id` = 48079 AND `expansion_id` = 3; -- Velen's Pants of Triumph -- Trophy of the Crusade
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 47242 LIMIT 1) as haxxorz), `parent_item_id` = 47242 WHERE `item_id` = 48080 AND `expansion_id` = 3; -- Velen's Raiments of Triumph -- Trophy of the Crusade
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 47242 LIMIT 1) as haxxorz), `parent_item_id` = 47242 WHERE `item_id` = 47986 AND `expansion_id` = 3; -- Velen's Robe of Triumph -- Trophy of the Crusade
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 47242 LIMIT 1) as haxxorz), `parent_item_id` = 47242 WHERE `item_id` = 47987 AND `expansion_id` = 3; -- Velen's Shoulderpads of Triumph -- Trophy of the Crusade
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 47242 LIMIT 1) as haxxorz), `parent_item_id` = 47242 WHERE `item_id` = 48273 AND `expansion_id` = 3; -- Windrunner's Handguards of Triumph -- Trophy of the Crusade
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 47242 LIMIT 1) as haxxorz), `parent_item_id` = 47242 WHERE `item_id` = 48256 AND `expansion_id` = 3; -- Windrunner's Handguards of Triumph -- Trophy of the Crusade
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 47242 LIMIT 1) as haxxorz), `parent_item_id` = 47242 WHERE `item_id` = 48257 AND `expansion_id` = 3; -- Windrunner's Headpiece of Triumph -- Trophy of the Crusade
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 47242 LIMIT 1) as haxxorz), `parent_item_id` = 47242 WHERE `item_id` = 48272 AND `expansion_id` = 3; -- Windrunner's Headpiece of Triumph -- Trophy of the Crusade
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 47242 LIMIT 1) as haxxorz), `parent_item_id` = 47242 WHERE `item_id` = 48258 AND `expansion_id` = 3; -- Windrunner's Legguards of Triumph -- Trophy of the Crusade
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 47242 LIMIT 1) as haxxorz), `parent_item_id` = 47242 WHERE `item_id` = 48271 AND `expansion_id` = 3; -- Windrunner's Legguards of Triumph -- Trophy of the Crusade
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 47242 LIMIT 1) as haxxorz), `parent_item_id` = 47242 WHERE `item_id` = 48259 AND `expansion_id` = 3; -- Windrunner's Spaulders of Triumph -- Trophy of the Crusade
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 47242 LIMIT 1) as haxxorz), `parent_item_id` = 47242 WHERE `item_id` = 48270 AND `expansion_id` = 3; -- Windrunner's Spaulders of Triumph -- Trophy of the Crusade
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 47242 LIMIT 1) as haxxorz), `parent_item_id` = 47242 WHERE `item_id` = 48274 AND `expansion_id` = 3; -- Windrunner's Tunic of Triumph -- Trophy of the Crusade
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 47242 LIMIT 1) as haxxorz), `parent_item_id` = 47242 WHERE `item_id` = 48255 AND `expansion_id` = 3; -- Windrunner's Tunic of Triumph -- Trophy of the Crusade
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 47242 LIMIT 1) as haxxorz), `parent_item_id` = 47242 WHERE `item_id` = 48376 AND `expansion_id` = 3; -- Wrynn's Battleplate of Triumph -- Trophy of the Crusade
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 47242 LIMIT 1) as haxxorz), `parent_item_id` = 47242 WHERE `item_id` = 48450 AND `expansion_id` = 3; -- Wrynn's Breastplate of Triumph -- Trophy of the Crusade
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 47242 LIMIT 1) as haxxorz), `parent_item_id` = 47242 WHERE `item_id` = 48377 AND `expansion_id` = 3; -- Wrynn's Gauntlets of Triumph -- Trophy of the Crusade
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 47242 LIMIT 1) as haxxorz), `parent_item_id` = 47242 WHERE `item_id` = 48430 AND `expansion_id` = 3; -- Wrynn's Greathelm of Triumph -- Trophy of the Crusade
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 47242 LIMIT 1) as haxxorz), `parent_item_id` = 47242 WHERE `item_id` = 48452 AND `expansion_id` = 3; -- Wrynn's Handguards of Triumph -- Trophy of the Crusade
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 47242 LIMIT 1) as haxxorz), `parent_item_id` = 47242 WHERE `item_id` = 48378 AND `expansion_id` = 3; -- Wrynn's Helmet of Triumph -- Trophy of the Crusade
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 47242 LIMIT 1) as haxxorz), `parent_item_id` = 47242 WHERE `item_id` = 48446 AND `expansion_id` = 3; -- Wrynn's Legguards of Triumph -- Trophy of the Crusade
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 47242 LIMIT 1) as haxxorz), `parent_item_id` = 47242 WHERE `item_id` = 48379 AND `expansion_id` = 3; -- Wrynn's Legplates of Triumph -- Trophy of the Crusade
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 47242 LIMIT 1) as haxxorz), `parent_item_id` = 47242 WHERE `item_id` = 48454 AND `expansion_id` = 3; -- Wrynn's Pauldrons of Triumph -- Trophy of the Crusade
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 47242 LIMIT 1) as haxxorz), `parent_item_id` = 47242 WHERE `item_id` = 48380 AND `expansion_id` = 3; -- Wrynn's Shoulderplates of Triumph -- Trophy of the Crusade
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 47242 LIMIT 1) as haxxorz), `parent_item_id` = 47242 WHERE `item_id` = 48095 AND `expansion_id` = 3; -- Zabra's Circlet of Triumph -- Trophy of the Crusade
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 47242 LIMIT 1) as haxxorz), `parent_item_id` = 47242 WHERE `item_id` = 48065 AND `expansion_id` = 3; -- Zabra's Cowl of Triumph -- Trophy of the Crusade
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 47242 LIMIT 1) as haxxorz), `parent_item_id` = 47242 WHERE `item_id` = 48066 AND `expansion_id` = 3; -- Zabra's Gloves of Triumph -- Trophy of the Crusade
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 47242 LIMIT 1) as haxxorz), `parent_item_id` = 47242 WHERE `item_id` = 48096 AND `expansion_id` = 3; -- Zabra's Handwraps of Triumph -- Trophy of the Crusade
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 47242 LIMIT 1) as haxxorz), `parent_item_id` = 47242 WHERE `item_id` = 48064 AND `expansion_id` = 3; -- Zabra's Leggings of Triumph -- Trophy of the Crusade
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 47242 LIMIT 1) as haxxorz), `parent_item_id` = 47242 WHERE `item_id` = 48092 AND `expansion_id` = 3; -- Zabra's Mantle of Triumph -- Trophy of the Crusade
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 47242 LIMIT 1) as haxxorz), `parent_item_id` = 47242 WHERE `item_id` = 48094 AND `expansion_id` = 3; -- Zabra's Pants of Triumph -- Trophy of the Crusade
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 47242 LIMIT 1) as haxxorz), `parent_item_id` = 47242 WHERE `item_id` = 48093 AND `expansion_id` = 3; -- Zabra's Raiments of Triumph -- Trophy of the Crusade
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 47242 LIMIT 1) as haxxorz), `parent_item_id` = 47242 WHERE `item_id` = 48063 AND `expansion_id` = 3; -- Zabra's Robe of Triumph -- Trophy of the Crusade
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 47242 LIMIT 1) as haxxorz), `parent_item_id` = 47242 WHERE `item_id` = 48062 AND `expansion_id` = 3; -- Zabra's Shoulderpads of Triumph -- Trophy of the Crusade
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 52025 LIMIT 1) as haxxorz), `parent_item_id` = 52025 WHERE `item_id` = 51159 AND `expansion_id` = 3; -- Sanctified Bloodmage Gloves -- Vanquisher's Mark of Sanctification
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 52025 LIMIT 1) as haxxorz), `parent_item_id` = 52025 WHERE `item_id` = 51158 AND `expansion_id` = 3; -- Sanctified Bloodmage Hood -- Vanquisher's Mark of Sanctification
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 52025 LIMIT 1) as haxxorz), `parent_item_id` = 52025 WHERE `item_id` = 51157 AND `expansion_id` = 3; -- Sanctified Bloodmage Leggings -- Vanquisher's Mark of Sanctification
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 52025 LIMIT 1) as haxxorz), `parent_item_id` = 52025 WHERE `item_id` = 51156 AND `expansion_id` = 3; -- Sanctified Bloodmage Robe -- Vanquisher's Mark of Sanctification
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 52025 LIMIT 1) as haxxorz), `parent_item_id` = 52025 WHERE `item_id` = 51155 AND `expansion_id` = 3; -- Sanctified Bloodmage Shoulderpads -- Vanquisher's Mark of Sanctification
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 52025 LIMIT 1) as haxxorz), `parent_item_id` = 52025 WHERE `item_id` = 51149 AND `expansion_id` = 3; -- Sanctified Lasherweave Cover -- Vanquisher's Mark of Sanctification
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 52025 LIMIT 1) as haxxorz), `parent_item_id` = 52025 WHERE `item_id` = 51138 AND `expansion_id` = 3; -- Sanctified Lasherweave Gauntlets -- Vanquisher's Mark of Sanctification
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 52025 LIMIT 1) as haxxorz), `parent_item_id` = 52025 WHERE `item_id` = 51148 AND `expansion_id` = 3; -- Sanctified Lasherweave Gloves -- Vanquisher's Mark of Sanctification
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 52025 LIMIT 1) as haxxorz), `parent_item_id` = 52025 WHERE `item_id` = 51144 AND `expansion_id` = 3; -- Sanctified Lasherweave Handgrips -- Vanquisher's Mark of Sanctification
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 52025 LIMIT 1) as haxxorz), `parent_item_id` = 52025 WHERE `item_id` = 51143 AND `expansion_id` = 3; -- Sanctified Lasherweave Headguard -- Vanquisher's Mark of Sanctification
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 52025 LIMIT 1) as haxxorz), `parent_item_id` = 52025 WHERE `item_id` = 51137 AND `expansion_id` = 3; -- Sanctified Lasherweave Helmet -- Vanquisher's Mark of Sanctification
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 52025 LIMIT 1) as haxxorz), `parent_item_id` = 52025 WHERE `item_id` = 51142 AND `expansion_id` = 3; -- Sanctified Lasherweave Legguards -- Vanquisher's Mark of Sanctification
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 52025 LIMIT 1) as haxxorz), `parent_item_id` = 52025 WHERE `item_id` = 51136 AND `expansion_id` = 3; -- Sanctified Lasherweave Legplates -- Vanquisher's Mark of Sanctification
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 52025 LIMIT 1) as haxxorz), `parent_item_id` = 52025 WHERE `item_id` = 51147 AND `expansion_id` = 3; -- Sanctified Lasherweave Mantle -- Vanquisher's Mark of Sanctification
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 52025 LIMIT 1) as haxxorz), `parent_item_id` = 52025 WHERE `item_id` = 51135 AND `expansion_id` = 3; -- Sanctified Lasherweave Pauldrons -- Vanquisher's Mark of Sanctification
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 52025 LIMIT 1) as haxxorz), `parent_item_id` = 52025 WHERE `item_id` = 51141 AND `expansion_id` = 3; -- Sanctified Lasherweave Raiment -- Vanquisher's Mark of Sanctification
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 52025 LIMIT 1) as haxxorz), `parent_item_id` = 52025 WHERE `item_id` = 51139 AND `expansion_id` = 3; -- Sanctified Lasherweave Robes -- Vanquisher's Mark of Sanctification
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 52025 LIMIT 1) as haxxorz), `parent_item_id` = 52025 WHERE `item_id` = 51140 AND `expansion_id` = 3; -- Sanctified Lasherweave Shoulderpads -- Vanquisher's Mark of Sanctification
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 52025 LIMIT 1) as haxxorz), `parent_item_id` = 52025 WHERE `item_id` = 51146 AND `expansion_id` = 3; -- Sanctified Lasherweave Trousers -- Vanquisher's Mark of Sanctification
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 52025 LIMIT 1) as haxxorz), `parent_item_id` = 52025 WHERE `item_id` = 51145 AND `expansion_id` = 3; -- Sanctified Lasherweave Vestment -- Vanquisher's Mark of Sanctification
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 52025 LIMIT 1) as haxxorz), `parent_item_id` = 52025 WHERE `item_id` = 51129 AND `expansion_id` = 3; -- Sanctified Scourgelord Battleplate -- Vanquisher's Mark of Sanctification
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 52025 LIMIT 1) as haxxorz), `parent_item_id` = 52025 WHERE `item_id` = 51134 AND `expansion_id` = 3; -- Sanctified Scourgelord Chestguard -- Vanquisher's Mark of Sanctification
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 52025 LIMIT 1) as haxxorz), `parent_item_id` = 52025 WHERE `item_id` = 51133 AND `expansion_id` = 3; -- Sanctified Scourgelord Faceguard -- Vanquisher's Mark of Sanctification
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 52025 LIMIT 1) as haxxorz), `parent_item_id` = 52025 WHERE `item_id` = 51128 AND `expansion_id` = 3; -- Sanctified Scourgelord Gauntlets -- Vanquisher's Mark of Sanctification
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 52025 LIMIT 1) as haxxorz), `parent_item_id` = 52025 WHERE `item_id` = 51132 AND `expansion_id` = 3; -- Sanctified Scourgelord Handguards -- Vanquisher's Mark of Sanctification
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 52025 LIMIT 1) as haxxorz), `parent_item_id` = 52025 WHERE `item_id` = 51127 AND `expansion_id` = 3; -- Sanctified Scourgelord Helmet -- Vanquisher's Mark of Sanctification
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 52025 LIMIT 1) as haxxorz), `parent_item_id` = 52025 WHERE `item_id` = 51131 AND `expansion_id` = 3; -- Sanctified Scourgelord Legguards -- Vanquisher's Mark of Sanctification
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 52025 LIMIT 1) as haxxorz), `parent_item_id` = 52025 WHERE `item_id` = 51126 AND `expansion_id` = 3; -- Sanctified Scourgelord Legplates -- Vanquisher's Mark of Sanctification
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 52025 LIMIT 1) as haxxorz), `parent_item_id` = 52025 WHERE `item_id` = 51130 AND `expansion_id` = 3; -- Sanctified Scourgelord Pauldrons -- Vanquisher's Mark of Sanctification
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 52025 LIMIT 1) as haxxorz), `parent_item_id` = 52025 WHERE `item_id` = 51125 AND `expansion_id` = 3; -- Sanctified Scourgelord Shoulderplates -- Vanquisher's Mark of Sanctification
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 52025 LIMIT 1) as haxxorz), `parent_item_id` = 52025 WHERE `item_id` = 51189 AND `expansion_id` = 3; -- Sanctified Shadowblade Breastplate -- Vanquisher's Mark of Sanctification
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 52025 LIMIT 1) as haxxorz), `parent_item_id` = 52025 WHERE `item_id` = 51188 AND `expansion_id` = 3; -- Sanctified Shadowblade Gauntlets -- Vanquisher's Mark of Sanctification
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 52025 LIMIT 1) as haxxorz), `parent_item_id` = 52025 WHERE `item_id` = 51187 AND `expansion_id` = 3; -- Sanctified Shadowblade Helmet -- Vanquisher's Mark of Sanctification
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 52025 LIMIT 1) as haxxorz), `parent_item_id` = 52025 WHERE `item_id` = 51186 AND `expansion_id` = 3; -- Sanctified Shadowblade Legplates -- Vanquisher's Mark of Sanctification
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 52025 LIMIT 1) as haxxorz), `parent_item_id` = 52025 WHERE `item_id` = 51185 AND `expansion_id` = 3; -- Sanctified Shadowblade Pauldrons -- Vanquisher's Mark of Sanctification
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 52028 LIMIT 1) as haxxorz), `parent_item_id` = 52028 WHERE `item_id` = 51280 AND `expansion_id` = 3; -- Sanctified Bloodmage Gloves -- Vanquisher's Mark of Sanctification
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 52028 LIMIT 1) as haxxorz), `parent_item_id` = 52028 WHERE `item_id` = 51281 AND `expansion_id` = 3; -- Sanctified Bloodmage Hood -- Vanquisher's Mark of Sanctification
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 52028 LIMIT 1) as haxxorz), `parent_item_id` = 52028 WHERE `item_id` = 51282 AND `expansion_id` = 3; -- Sanctified Bloodmage Leggings -- Vanquisher's Mark of Sanctification
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 52028 LIMIT 1) as haxxorz), `parent_item_id` = 52028 WHERE `item_id` = 51283 AND `expansion_id` = 3; -- Sanctified Bloodmage Robe -- Vanquisher's Mark of Sanctification
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 52028 LIMIT 1) as haxxorz), `parent_item_id` = 52028 WHERE `item_id` = 51284 AND `expansion_id` = 3; -- Sanctified Bloodmage Shoulderpads -- Vanquisher's Mark of Sanctification
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 52028 LIMIT 1) as haxxorz), `parent_item_id` = 52028 WHERE `item_id` = 51290 AND `expansion_id` = 3; -- Sanctified Lasherweave Cover -- Vanquisher's Mark of Sanctification
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 52028 LIMIT 1) as haxxorz), `parent_item_id` = 52028 WHERE `item_id` = 51301 AND `expansion_id` = 3; -- Sanctified Lasherweave Gauntlets -- Vanquisher's Mark of Sanctification
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 52028 LIMIT 1) as haxxorz), `parent_item_id` = 52028 WHERE `item_id` = 51291 AND `expansion_id` = 3; -- Sanctified Lasherweave Gloves -- Vanquisher's Mark of Sanctification
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 52028 LIMIT 1) as haxxorz), `parent_item_id` = 52028 WHERE `item_id` = 51295 AND `expansion_id` = 3; -- Sanctified Lasherweave Handgrips -- Vanquisher's Mark of Sanctification
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 52028 LIMIT 1) as haxxorz), `parent_item_id` = 52028 WHERE `item_id` = 51296 AND `expansion_id` = 3; -- Sanctified Lasherweave Headguard -- Vanquisher's Mark of Sanctification
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 52028 LIMIT 1) as haxxorz), `parent_item_id` = 52028 WHERE `item_id` = 51302 AND `expansion_id` = 3; -- Sanctified Lasherweave Helmet -- Vanquisher's Mark of Sanctification
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 52028 LIMIT 1) as haxxorz), `parent_item_id` = 52028 WHERE `item_id` = 51297 AND `expansion_id` = 3; -- Sanctified Lasherweave Legguards -- Vanquisher's Mark of Sanctification
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 52028 LIMIT 1) as haxxorz), `parent_item_id` = 52028 WHERE `item_id` = 51303 AND `expansion_id` = 3; -- Sanctified Lasherweave Legplates -- Vanquisher's Mark of Sanctification
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 52028 LIMIT 1) as haxxorz), `parent_item_id` = 52028 WHERE `item_id` = 51292 AND `expansion_id` = 3; -- Sanctified Lasherweave Mantle -- Vanquisher's Mark of Sanctification
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 52028 LIMIT 1) as haxxorz), `parent_item_id` = 52028 WHERE `item_id` = 51304 AND `expansion_id` = 3; -- Sanctified Lasherweave Pauldrons -- Vanquisher's Mark of Sanctification
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 52028 LIMIT 1) as haxxorz), `parent_item_id` = 52028 WHERE `item_id` = 51298 AND `expansion_id` = 3; -- Sanctified Lasherweave Raiment -- Vanquisher's Mark of Sanctification
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 52028 LIMIT 1) as haxxorz), `parent_item_id` = 52028 WHERE `item_id` = 51300 AND `expansion_id` = 3; -- Sanctified Lasherweave Robes -- Vanquisher's Mark of Sanctification
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 52028 LIMIT 1) as haxxorz), `parent_item_id` = 52028 WHERE `item_id` = 51299 AND `expansion_id` = 3; -- Sanctified Lasherweave Shoulderpads -- Vanquisher's Mark of Sanctification
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 52028 LIMIT 1) as haxxorz), `parent_item_id` = 52028 WHERE `item_id` = 51293 AND `expansion_id` = 3; -- Sanctified Lasherweave Trousers -- Vanquisher's Mark of Sanctification
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 52028 LIMIT 1) as haxxorz), `parent_item_id` = 52028 WHERE `item_id` = 51294 AND `expansion_id` = 3; -- Sanctified Lasherweave Vestment -- Vanquisher's Mark of Sanctification
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 52028 LIMIT 1) as haxxorz), `parent_item_id` = 52028 WHERE `item_id` = 51310 AND `expansion_id` = 3; -- Sanctified Scourgelord Battleplate -- Vanquisher's Mark of Sanctification
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 52028 LIMIT 1) as haxxorz), `parent_item_id` = 52028 WHERE `item_id` = 51305 AND `expansion_id` = 3; -- Sanctified Scourgelord Chestguard -- Vanquisher's Mark of Sanctification
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 52028 LIMIT 1) as haxxorz), `parent_item_id` = 52028 WHERE `item_id` = 51306 AND `expansion_id` = 3; -- Sanctified Scourgelord Faceguard -- Vanquisher's Mark of Sanctification
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 52028 LIMIT 1) as haxxorz), `parent_item_id` = 52028 WHERE `item_id` = 51311 AND `expansion_id` = 3; -- Sanctified Scourgelord Gauntlets -- Vanquisher's Mark of Sanctification
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 52028 LIMIT 1) as haxxorz), `parent_item_id` = 52028 WHERE `item_id` = 51307 AND `expansion_id` = 3; -- Sanctified Scourgelord Handguards -- Vanquisher's Mark of Sanctification
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 52028 LIMIT 1) as haxxorz), `parent_item_id` = 52028 WHERE `item_id` = 51312 AND `expansion_id` = 3; -- Sanctified Scourgelord Helmet -- Vanquisher's Mark of Sanctification
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 52028 LIMIT 1) as haxxorz), `parent_item_id` = 52028 WHERE `item_id` = 51308 AND `expansion_id` = 3; -- Sanctified Scourgelord Legguards -- Vanquisher's Mark of Sanctification
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 52028 LIMIT 1) as haxxorz), `parent_item_id` = 52028 WHERE `item_id` = 51313 AND `expansion_id` = 3; -- Sanctified Scourgelord Legplates -- Vanquisher's Mark of Sanctification
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 52028 LIMIT 1) as haxxorz), `parent_item_id` = 52028 WHERE `item_id` = 51309 AND `expansion_id` = 3; -- Sanctified Scourgelord Pauldrons -- Vanquisher's Mark of Sanctification
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 52028 LIMIT 1) as haxxorz), `parent_item_id` = 52028 WHERE `item_id` = 51314 AND `expansion_id` = 3; -- Sanctified Scourgelord Shoulderplates -- Vanquisher's Mark of Sanctification
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 52028 LIMIT 1) as haxxorz), `parent_item_id` = 52028 WHERE `item_id` = 51250 AND `expansion_id` = 3; -- Sanctified Shadowblade Breastplate -- Vanquisher's Mark of Sanctification
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 52028 LIMIT 1) as haxxorz), `parent_item_id` = 52028 WHERE `item_id` = 51251 AND `expansion_id` = 3; -- Sanctified Shadowblade Gauntlets -- Vanquisher's Mark of Sanctification
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 52028 LIMIT 1) as haxxorz), `parent_item_id` = 52028 WHERE `item_id` = 51252 AND `expansion_id` = 3; -- Sanctified Shadowblade Helmet -- Vanquisher's Mark of Sanctification
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 52028 LIMIT 1) as haxxorz), `parent_item_id` = 52028 WHERE `item_id` = 51253 AND `expansion_id` = 3; -- Sanctified Shadowblade Legplates -- Vanquisher's Mark of Sanctification
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 52028 LIMIT 1) as haxxorz), `parent_item_id` = 52028 WHERE `item_id` = 51254 AND `expansion_id` = 3; -- Sanctified Shadowblade Pauldrons -- Vanquisher's Mark of Sanctification
-- Legendary
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 45038 LIMIT 1) as haxxorz), `parent_item_id` = 45038 WHERE `item_id` = 45039 AND `expansion_id` = 3; -- Shattered Fragments of Val'anyr
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 45038 LIMIT 1) as haxxorz), `parent_item_id` = 45038 WHERE `item_id` = 45897 AND `expansion_id` = 3; -- Reforged Hammer of Ancient Kings
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 45038 LIMIT 1) as haxxorz), `parent_item_id` = 45038 WHERE `item_id` = 45896 AND `expansion_id` = 3; -- Unbound Fragments of Val'anyr
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 45038 LIMIT 1) as haxxorz), `parent_item_id` = 45038 WHERE `item_id` = 46017 AND `expansion_id` = 3; -- Val'anyr, Hammer of Ancient Kings
-- Runed Orb 45087
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 45087 LIMIT 1) as haxxorz), `parent_item_id` = 45087 WHERE `item_id` = 45559 AND `expansion_id` = 3; -- Battlelord's Plate Boots
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 45087 LIMIT 1) as haxxorz), `parent_item_id` = 45087 WHERE `item_id` = 45556 AND `expansion_id` = 3; -- Belt of Arctic Life
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 45087 LIMIT 1) as haxxorz), `parent_item_id` = 45087 WHERE `item_id` = 45553 AND `expansion_id` = 3; -- Belt of Dragons
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 45087 LIMIT 1) as haxxorz), `parent_item_id` = 45087 WHERE `item_id` = 45550 AND `expansion_id` = 3; -- Belt of the Titans
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 45087 LIMIT 1) as haxxorz), `parent_item_id` = 45087 WHERE `item_id` = 45554 AND `expansion_id` = 3; -- Blue Belt of Chaos
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 45087 LIMIT 1) as haxxorz), `parent_item_id` = 45087 WHERE `item_id` = 45562 AND `expansion_id` = 3; -- Boots of Living Scale
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 45087 LIMIT 1) as haxxorz), `parent_item_id` = 45087 WHERE `item_id` = 45565 AND `expansion_id` = 3; -- Boots of Wintry Endurance
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 45087 LIMIT 1) as haxxorz), `parent_item_id` = 45087 WHERE `item_id` = 45558 AND `expansion_id` = 3; -- Cord of the White Dawn
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 45087 LIMIT 1) as haxxorz), `parent_item_id` = 45087 WHERE `item_id` = 45555 AND `expansion_id` = 3; -- Death-Warmed Belt
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 45087 LIMIT 1) as haxxorz), `parent_item_id` = 45087 WHERE `item_id` = 45564 AND `expansion_id` = 3; -- Footpads of Silence
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 45087 LIMIT 1) as haxxorz), `parent_item_id` = 45087 WHERE `item_id` = 45551 AND `expansion_id` = 3; -- Indestructible Plate Girdle
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 45087 LIMIT 1) as haxxorz), `parent_item_id` = 45087 WHERE `item_id` = 45563 AND `expansion_id` = 3; -- Lightning Grounded Boots
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 45087 LIMIT 1) as haxxorz), `parent_item_id` = 45087 WHERE `item_id` = 45552 AND `expansion_id` = 3; -- Plate Girdle of Righteousness
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 45087 LIMIT 1) as haxxorz), `parent_item_id` = 45087 WHERE `item_id` = 45557 AND `expansion_id` = 3; -- Sash of Ancient Power
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 45087 LIMIT 1) as haxxorz), `parent_item_id` = 45087 WHERE `item_id` = 45567 AND `expansion_id` = 3; -- Savior's Slippers
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 45087 LIMIT 1) as haxxorz), `parent_item_id` = 45087 WHERE `item_id` = 45566 AND `expansion_id` = 3; -- Spellslinger's Slippers
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 45087 LIMIT 1) as haxxorz), `parent_item_id` = 45087 WHERE `item_id` = 45560 AND `expansion_id` = 3; -- Spiked Deathdealers
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 45087 LIMIT 1) as haxxorz), `parent_item_id` = 45087 WHERE `item_id` = 45561 AND `expansion_id` = 3; -- Treads of Destiny
-- Primordial Saronite 49908
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 49908 LIMIT 1) as haxxorz), `parent_item_id` = 49908 WHERE `item_id` = 49959 AND `expansion_id` = 3; -- Pattern: Bladeborn Leggings
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 49908 LIMIT 1) as haxxorz), `parent_item_id` = 49908 WHERE `item_id` = 49958 AND `expansion_id` = 3; -- Pattern: Blessed Cenarion Boots
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 49908 LIMIT 1) as haxxorz), `parent_item_id` = 49908 WHERE `item_id` = 49954 AND `expansion_id` = 3; -- Pattern: Deathfrost Boots
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 49908 LIMIT 1) as haxxorz), `parent_item_id` = 49908 WHERE `item_id` = 49965 AND `expansion_id` = 3; -- Pattern: Draconic Bonesplinter Legguards
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 49908 LIMIT 1) as haxxorz), `parent_item_id` = 49908 WHERE `item_id` = 49963 AND `expansion_id` = 3; -- Pattern: Earthsoul Boots
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 49908 LIMIT 1) as haxxorz), `parent_item_id` = 49908 WHERE `item_id` = 49961 AND `expansion_id` = 3; -- Pattern: Footpads of Impending Death
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 49908 LIMIT 1) as haxxorz), `parent_item_id` = 49908 WHERE `item_id` = 49953 AND `expansion_id` = 3; -- Pattern: Leggings of Woven Death
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 49908 LIMIT 1) as haxxorz), `parent_item_id` = 49908 WHERE `item_id` = 49957 AND `expansion_id` = 3; -- Pattern: Legwraps of Unleashed Nature
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 49908 LIMIT 1) as haxxorz), `parent_item_id` = 49908 WHERE `item_id` = 49962 AND `expansion_id` = 3; -- Pattern: Lightning-Infused Leggings
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 49908 LIMIT 1) as haxxorz), `parent_item_id` = 49908 WHERE `item_id` = 49955 AND `expansion_id` = 3; -- Pattern: Lightweave Leggings
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 49908 LIMIT 1) as haxxorz), `parent_item_id` = 49908 WHERE `item_id` = 49966 AND `expansion_id` = 3; -- Pattern: Rock-Steady Treads
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 49908 LIMIT 1) as haxxorz), `parent_item_id` = 49908 WHERE `item_id` = 49956 AND `expansion_id` = 3; -- Pattern: Sandals of Consecration
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 49908 LIMIT 1) as haxxorz), `parent_item_id` = 49908 WHERE `item_id` = 49974 AND `expansion_id` = 3; -- Plans: Boots of Kingly Upheaval
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 49908 LIMIT 1) as haxxorz), `parent_item_id` = 49908 WHERE `item_id` = 49972 AND `expansion_id` = 3; -- Plans: Hellfrozen Bonegrinders
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 49908 LIMIT 1) as haxxorz), `parent_item_id` = 49908 WHERE `item_id` = 49971 AND `expansion_id` = 3; -- Plans: Legplates of Painful Death
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 49908 LIMIT 1) as haxxorz), `parent_item_id` = 49908 WHERE `item_id` = 49973 AND `expansion_id` = 3; -- Plans: Pillars of Might
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 49908 LIMIT 1) as haxxorz), `parent_item_id` = 49908 WHERE `item_id` = 49970 AND `expansion_id` = 3; -- Plans: Protectors of Life
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 49908 LIMIT 1) as haxxorz), `parent_item_id` = 49908 WHERE `item_id` = 49969 AND `expansion_id` = 3; -- Plans: Puresteel Legplates
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 49908 LIMIT 1) as haxxorz), `parent_item_id` = 49908 WHERE `item_id` = 49899 AND `expansion_id` = 3; -- Bladeborn Leggings
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 49908 LIMIT 1) as haxxorz), `parent_item_id` = 49908 WHERE `item_id` = 49894 AND `expansion_id` = 3; -- Blessed Cenarion Boots
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 49908 LIMIT 1) as haxxorz), `parent_item_id` = 49908 WHERE `item_id` = 49907 AND `expansion_id` = 3; -- Boots of Kingly Upheaval
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 49908 LIMIT 1) as haxxorz), `parent_item_id` = 49908 WHERE `item_id` = 49890 AND `expansion_id` = 3; -- Deathfrost Boots
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 49908 LIMIT 1) as haxxorz), `parent_item_id` = 49908 WHERE `item_id` = 49901 AND `expansion_id` = 3; -- Draconic Bonesplinter Legguards
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 49908 LIMIT 1) as haxxorz), `parent_item_id` = 49908 WHERE `item_id` = 49896 AND `expansion_id` = 3; -- Earthsoul Boots
UPDATE `items` SET `parent_id` = (SELECT * FROM (SELECT `id` FROM `items` WHERE `item_id` = 49908 LIMIT 1) as haxxorz), `parent_item_id` = 49908 WHERE `item_id` = 49895 AND `expansion_id` = 3; -- Footpads of Impending Death