-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrequest.json
10353 lines (10353 loc) · 326 KB
/
request.json
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
{
"status": 200,
"data": [
{
"ActiveFlag": "y",
"ChildItemId": 0,
"DeviceName": "Iron Mail",
"IconId": 2866,
"ItemDescription": {
"Description": "Physical Protection and Health.",
"Menuitems": [
{
"Description": "Health",
"Value": "+75"
},
{
"Description": "Physical Protection",
"Value": "+10"
}
],
"SecondaryDescription": null
},
"ItemId": 7526,
"ItemTier": 1,
"Price": 650,
"RestrictedRoles": "no restrictions",
"RootItemId": 7526,
"ShortDesc": "Physical Protection and Health.",
"StartingItem": false,
"Type": "Item",
"itemIcon_URL": "https://webcdn.hirezstudios.com/smite/item-icons/iron-mail.jpg",
"ret_msg": null
},
{
"ActiveFlag": "y",
"ChildItemId": 7526,
"DeviceName": "Steel Mail",
"IconId": 2865,
"ItemDescription": {
"Description": "",
"Menuitems": [
{
"Description": "Health",
"Value": "+200"
},
{
"Description": "Physical Protection",
"Value": "+20"
}
],
"SecondaryDescription": ""
},
"ItemId": 7527,
"ItemTier": 2,
"Price": 750,
"RestrictedRoles": "no restrictions",
"RootItemId": 7526,
"ShortDesc": "Physical Protection and Health.",
"StartingItem": false,
"Type": "Item",
"itemIcon_URL": "https://webcdn.hirezstudios.com/smite/item-icons/steel-mail.jpg",
"ret_msg": null
},
{
"ActiveFlag": "y",
"ChildItemId": 7527,
"DeviceName": "Sovereignty",
"IconId": 2864,
"ItemDescription": {
"Description": "This item gives the owner an aura of physical protections.",
"Menuitems": [
{
"Description": "Health",
"Value": "+250"
},
{
"Description": "Physical Protection",
"Value": "+45"
}
],
"SecondaryDescription": "AURA - Allied gods within 70 units have their Physical Protections increased by 15 and their HP5 increased by 35."
},
"ItemId": 7528,
"ItemTier": 3,
"Price": 700,
"RestrictedRoles": "no restrictions",
"RootItemId": 7526,
"ShortDesc": "Physical Protection Aura",
"StartingItem": false,
"Type": "Item",
"itemIcon_URL": "https://webcdn.hirezstudios.com/smite/item-icons/sovereignty.jpg",
"ret_msg": null
},
{
"ActiveFlag": "y",
"ChildItemId": 7527,
"DeviceName": "Mystical Mail",
"IconId": 2917,
"ItemDescription": {
"Description": "This item deals damage to nearby enemies.",
"Menuitems": [
{
"Description": "Health",
"Value": "+200"
},
{
"Description": "Physical Protection",
"Value": "+40"
},
{
"Description": "Crowd Control Reduction",
"Value": "+20%"
}
],
"SecondaryDescription": "AURA - ALL enemies within 25 units are dealt 40 Magical Damage per second."
},
"ItemId": 7537,
"ItemTier": 3,
"Price": 950,
"RestrictedRoles": "no restrictions",
"RootItemId": 7526,
"ShortDesc": "Nearby enemies take damage over time",
"StartingItem": false,
"Type": "Item",
"itemIcon_URL": "https://webcdn.hirezstudios.com/smite/item-icons/mystical-mail.jpg",
"ret_msg": null
},
{
"ActiveFlag": "y",
"ChildItemId": 7527,
"DeviceName": "Midgardian Mail",
"IconId": 2863,
"ItemDescription": {
"Description": "This item causes attackers to have a chance to be slowed.",
"Menuitems": [
{
"Description": "Health",
"Value": "+300"
},
{
"Description": "Physical Protection",
"Value": "+40"
}
],
"SecondaryDescription": "PASSIVE - Enemies that successfully land a basic attack on you have their Movement Speed and Attack Speed reduced by 8% for 2 seconds. This effect can stack up to 3 times and can stack with other item slow effects."
},
"ItemId": 7907,
"ItemTier": 3,
"Price": 900,
"RestrictedRoles": "no restrictions",
"RootItemId": 7526,
"ShortDesc": "Slow enemies when hit by their Basic Attacks",
"StartingItem": false,
"Type": "Item",
"itemIcon_URL": "https://webcdn.hirezstudios.com/smite/item-icons/midgardian-mail.jpg",
"ret_msg": null
},
{
"ActiveFlag": "y",
"ChildItemId": 7527,
"DeviceName": "Emperor's Armor",
"IconId": 4670,
"ItemDescription": {
"Description": "When in range of an enemy structure, that structure's Attack Speed is reduced by 30%. When in range of an ally structure, that structures has its Attack Speed increased by 40%.",
"Menuitems": [
{
"Description": "Health",
"Value": "+250"
},
{
"Description": "Physical Protection",
"Value": "+60"
}
],
"SecondaryDescription": "AURA - Damageable enemy structures within 55 units have their Attack Speed reduced by 30%.\nDamageable allied structures within 55 units have their Attack Speed increased by 40%."
},
"ItemId": 13189,
"ItemTier": 3,
"Price": 600,
"RestrictedRoles": "no restrictions",
"RootItemId": 7526,
"ShortDesc": "Tower buff and debuff aura",
"StartingItem": false,
"Type": "Item",
"itemIcon_URL": "https://webcdn.hirezstudios.com/smite/item-icons/emperors-armor.jpg",
"ret_msg": null
},
{
"ActiveFlag": "y",
"ChildItemId": 0,
"DeviceName": "Light Blade",
"IconId": 2738,
"ItemDescription": {
"Description": "Increased Attack Speed and Power.",
"Menuitems": [
{
"Description": "Physical Power",
"Value": "+5"
},
{
"Description": "Attack Speed",
"Value": "+10%"
}
],
"SecondaryDescription": null
},
"ItemId": 7573,
"ItemTier": 1,
"Price": 600,
"RestrictedRoles": "no restrictions",
"RootItemId": 7573,
"ShortDesc": "Physical Power and Attack Speed",
"StartingItem": false,
"Type": "Item",
"itemIcon_URL": "https://webcdn.hirezstudios.com/smite/item-icons/light-blade.jpg",
"ret_msg": null
},
{
"ActiveFlag": "y",
"ChildItemId": 7573,
"DeviceName": "Balanced Blade",
"IconId": 2736,
"ItemDescription": {
"Description": "",
"Menuitems": [
{
"Description": "Physical Power",
"Value": "+15"
},
{
"Description": "Attack Speed",
"Value": "+15%"
}
],
"SecondaryDescription": ""
},
"ItemId": 7574,
"ItemTier": 2,
"Price": 650,
"RestrictedRoles": "no restrictions",
"RootItemId": 7573,
"ShortDesc": "Physical Power and Attack Speed.",
"StartingItem": false,
"Type": "Item",
"itemIcon_URL": "https://webcdn.hirezstudios.com/smite/item-icons/balanced-blade.jpg",
"ret_msg": null
},
{
"ActiveFlag": "n",
"ChildItemId": 7573,
"DeviceName": "*Asi",
"IconId": 2526,
"ItemDescription": {
"Description": "This item gives increased Physical Lifesteal when at low Health.",
"Menuitems": [
{
"Description": "Physical Lifesteal",
"Value": "+15%"
},
{
"Description": "Attack Speed",
"Value": "+25%"
},
{
"Description": "Physical Penetration",
"Value": "+10"
}
],
"SecondaryDescription": "PASSIVE - If you drop below 35% Health, you gain an additional 25% Physical Lifesteal for 5 seconds. Can only occur once every 15 seconds."
},
"ItemId": 9348,
"ItemTier": 2,
"Price": 1100,
"RestrictedRoles": "no restrictions",
"RootItemId": 7573,
"ShortDesc": "Gain Physical Lifesteal when at low Health",
"StartingItem": false,
"Type": "Item",
"itemIcon_URL": "https://webcdn.hirezstudios.com/smite/item-icons/*asi.jpg",
"ret_msg": null
},
{
"ActiveFlag": "y",
"ChildItemId": 7574,
"DeviceName": "The Executioner",
"IconId": 2803,
"ItemDescription": {
"Description": "This item causes your Basic Attacks to reduce the target's Physical Protections.",
"Menuitems": [
{
"Description": "Physical Power",
"Value": "+35"
},
{
"Description": "Attack Speed",
"Value": "+25%"
}
],
"SecondaryDescription": "PASSIVE - Basic Attacks against an enemy reduce your target's Physical Protection by 7% for 3 seconds (max. 4 Stacks)."
},
"ItemId": 7575,
"ItemTier": 3,
"Price": 950,
"RestrictedRoles": "no restrictions",
"RootItemId": 7573,
"ShortDesc": "Basic Attacks reduce target's Physical Protection",
"StartingItem": false,
"Type": "Item",
"itemIcon_URL": "https://webcdn.hirezstudios.com/smite/item-icons/the-executioner.jpg",
"ret_msg": null
},
{
"ActiveFlag": "y",
"ChildItemId": 7574,
"DeviceName": "Qin's Sais",
"IconId": 2802,
"ItemDescription": {
"Description": "This item causes the owner's Basic Attacks to deal a percentage of the target's Health as additional damage.",
"Menuitems": [
{
"Description": "Physical Power",
"Value": "+40"
},
{
"Description": "Attack Speed",
"Value": "+20%"
}
],
"SecondaryDescription": "PASSIVE - On Basic Attack hits, deal Physical Damage equal to 3% of the target's maximum Health. If the target has over 2000 Health, the bonus damage scales up. This effect reaches a maximum of 5% of the targets Maximum Health at 2750 Health."
},
"ItemId": 7593,
"ItemTier": 3,
"Price": 1450,
"RestrictedRoles": "no restrictions",
"RootItemId": 7573,
"ShortDesc": "Bonus damage based on target's maximum Health",
"StartingItem": false,
"Type": "Item",
"itemIcon_URL": "https://webcdn.hirezstudios.com/smite/item-icons/qins-sais.jpg",
"ret_msg": null
},
{
"ActiveFlag": "y",
"ChildItemId": 7574,
"DeviceName": "Asi",
"IconId": 2526,
"ItemDescription": {
"Description": "This item gives increased Physical Lifesteal when at low Health.",
"Menuitems": [
{
"Description": "Physical Power",
"Value": "+20"
},
{
"Description": "Physical Lifesteal",
"Value": "+20%"
},
{
"Description": "Attack Speed",
"Value": "+25%"
},
{
"Description": "Physical Penetration",
"Value": "+15"
}
],
"SecondaryDescription": "PASSIVE - If you drop below 35% Health, you gain an additional 30% Physical Lifesteal for 5 seconds. Can only occur once every 15 seconds."
},
"ItemId": 17090,
"ItemTier": 3,
"Price": 1300,
"RestrictedRoles": "no restrictions",
"RootItemId": 7573,
"ShortDesc": "Gain Physical Lifesteal when at low Health",
"StartingItem": false,
"Type": "Item",
"itemIcon_URL": "https://webcdn.hirezstudios.com/smite/item-icons/asi.jpg",
"ret_msg": null
},
{
"ActiveFlag": "y",
"ChildItemId": 0,
"DeviceName": "Tiny Trinket",
"IconId": 2829,
"ItemDescription": {
"Description": "Magical Power and Magical Lifesteal.",
"Menuitems": [
{
"Description": "Magical Power",
"Value": "+20"
},
{
"Description": "Magical Lifesteal",
"Value": "+6%"
}
],
"SecondaryDescription": null
},
"ItemId": 7610,
"ItemTier": 1,
"Price": 550,
"RestrictedRoles": "no restrictions",
"RootItemId": 7610,
"ShortDesc": "Magical Power and Magical Lifesteal.",
"StartingItem": false,
"Type": "Item",
"itemIcon_URL": "https://webcdn.hirezstudios.com/smite/item-icons/tiny-trinket.jpg",
"ret_msg": null
},
{
"ActiveFlag": "y",
"ChildItemId": 7610,
"DeviceName": "Enchanted Trinket",
"IconId": 2827,
"ItemDescription": {
"Description": null,
"Menuitems": [
{
"Description": "Magical Power",
"Value": "+30"
},
{
"Description": "Health",
"Value": "+100"
},
{
"Description": "Magical Lifesteal",
"Value": "+12%"
}
],
"SecondaryDescription": null
},
"ItemId": 7609,
"ItemTier": 2,
"Price": 550,
"RestrictedRoles": "no restrictions",
"RootItemId": 7610,
"ShortDesc": "Magical Power and Magical Lifesteal.",
"StartingItem": false,
"Type": "Item",
"itemIcon_URL": "https://webcdn.hirezstudios.com/smite/item-icons/enchanted-trinket.jpg",
"ret_msg": null
},
{
"ActiveFlag": "y",
"ChildItemId": 7610,
"DeviceName": "Talon Trinket",
"IconId": 2828,
"ItemDescription": {
"Description": null,
"Menuitems": [
{
"Description": "Magical Power",
"Value": "+60"
},
{
"Description": "Mana",
"Value": "+100"
},
{
"Description": "Magical Lifesteal",
"Value": "+8%"
}
],
"SecondaryDescription": null
},
"ItemId": 8574,
"ItemTier": 2,
"Price": 850,
"RestrictedRoles": "no restrictions",
"RootItemId": 7610,
"ShortDesc": "Magical Power and Magical Lifesteal.",
"StartingItem": false,
"Type": "Item",
"itemIcon_URL": "https://webcdn.hirezstudios.com/smite/item-icons/talon-trinket.jpg",
"ret_msg": null
},
{
"ActiveFlag": "y",
"ChildItemId": 7609,
"DeviceName": "Pythagorem's Piece",
"IconId": 2825,
"ItemDescription": {
"Description": "This item gives the owner an aura of Lifesteal and Power.",
"Menuitems": [
{
"Description": "Magical Power",
"Value": "+40"
},
{
"Description": "Health",
"Value": "+200"
},
{
"Description": "Magical Lifesteal",
"Value": "+12%"
},
{
"Description": "Magical Penetration",
"Value": "+10%"
}
],
"SecondaryDescription": "AURA - Allied gods within 70 units have their Magical Lifesteal increased by 12% and their Magical Power increased by 30 or their Physical Lifesteal increased by 10% and their Physical Power increased by 20."
},
"ItemId": 7534,
"ItemTier": 3,
"Price": 1200,
"RestrictedRoles": "no restrictions",
"RootItemId": 7610,
"ShortDesc": "Power and Lifesteal Aura",
"StartingItem": false,
"Type": "Item",
"itemIcon_URL": "https://webcdn.hirezstudios.com/smite/item-icons/pythagorems-piece.jpg",
"ret_msg": null
},
{
"ActiveFlag": "y",
"ChildItemId": 8574,
"DeviceName": "Bancroft's Talon",
"IconId": 2826,
"ItemDescription": {
"Description": "This item gives the owner additional Magical Power and Lifesteal based on the percentage of the owner's missing Health.",
"Menuitems": [
{
"Description": "Magical Power",
"Value": "+100"
},
{
"Description": "Magical Lifesteal",
"Value": "+15%"
},
{
"Description": "Mana",
"Value": "+150"
}
],
"SecondaryDescription": "PASSIVE - You gain additional Magical Power and Lifesteal scaled from missing Health. This caps at 100 power and 20% Lifesteal at 25% Health."
},
"ItemId": 8551,
"ItemTier": 3,
"Price": 1100,
"RestrictedRoles": "no restrictions",
"RootItemId": 7610,
"ShortDesc": "Gain Magical Power as Health is lost",
"StartingItem": false,
"Type": "Item",
"itemIcon_URL": "https://webcdn.hirezstudios.com/smite/item-icons/bancrofts-talon.jpg",
"ret_msg": null
},
{
"ActiveFlag": "y",
"ChildItemId": 8574,
"DeviceName": "Typhon's Fang",
"IconId": 6639,
"ItemDescription": {
"Description": null,
"Menuitems": [
{
"Description": "Magical Power",
"Value": "+70"
},
{
"Description": "Mana",
"Value": "+200"
},
{
"Description": "Magical Lifesteal",
"Value": "+15%"
},
{
"Description": "Magical Penetration",
"Value": "+10%"
}
],
"SecondaryDescription": "PASSIVE - Your Healing obtained from Magical Lifesteal is increased by 30%. Your Magical power is increased by twice the amount of Magical Lifesteal you have."
},
"ItemId": 15579,
"ItemTier": 3,
"Price": 1400,
"RestrictedRoles": "no restrictions",
"RootItemId": 7610,
"ShortDesc": "Increased Healing from Magical Lifesteal",
"StartingItem": false,
"Type": "Item",
"itemIcon_URL": "https://webcdn.hirezstudios.com/smite/item-icons/typhons-fang.jpg",
"ret_msg": null
},
{
"ActiveFlag": "y",
"ChildItemId": 7609,
"DeviceName": "Soul Gem",
"IconId": 6633,
"ItemDescription": {
"Description": "Consume stacks to deal bonus damage.",
"Menuitems": [
{
"Description": "Magical Power",
"Value": "+80"
},
{
"Description": "Health",
"Value": "+150"
},
{
"Description": "Magical Lifesteal",
"Value": "+12%"
},
{
"Description": "Cooldown Reduction",
"Value": "+10%"
}
],
"SecondaryDescription": "PASSIVE - On successful hit of an Ability you gain 1 stack. At 4 Stacks your next Ability that damages an enemy God will deal bonus damage equal to 30% of your Magical power to each God hit, and will heal yourself and allies within 20 units for 40% of your Magical Power and will consume the 4 stacks."
},
"ItemId": 15582,
"ItemTier": 3,
"Price": 1200,
"RestrictedRoles": "no restrictions",
"RootItemId": 7610,
"ShortDesc": "Build stacks to get bonus damage and healing",
"StartingItem": false,
"Type": "Item",
"itemIcon_URL": "https://webcdn.hirezstudios.com/smite/item-icons/soul-gem.jpg",
"ret_msg": null
},
{
"ActiveFlag": "y",
"ChildItemId": 0,
"DeviceName": "Healing Potion",
"IconId": 2929,
"ItemDescription": {
"Description": "This consumable heals you over time.",
"Menuitems": [],
"SecondaryDescription": "This consumable heals 250 Health over 25 seconds."
},
"ItemId": 7621,
"ItemTier": 1,
"Price": 50,
"RestrictedRoles": "no restrictions",
"RootItemId": 7621,
"ShortDesc": "Restores Health over time.",
"StartingItem": false,
"Type": "Consumable",
"itemIcon_URL": "https://webcdn.hirezstudios.com/smite/item-icons/healing-potion.jpg",
"ret_msg": null
},
{
"ActiveFlag": "y",
"ChildItemId": 0,
"DeviceName": "Mana Potion",
"IconId": 2930,
"ItemDescription": {
"Description": "This consumable heals Mana over time.",
"Menuitems": [],
"SecondaryDescription": "This consumable heals 150 Mana over 25 seconds."
},
"ItemId": 7622,
"ItemTier": 1,
"Price": 50,
"RestrictedRoles": "no restrictions",
"RootItemId": 7622,
"ShortDesc": "Restores Mana over time.",
"StartingItem": false,
"Type": "Consumable",
"itemIcon_URL": "https://webcdn.hirezstudios.com/smite/item-icons/mana-potion.jpg",
"ret_msg": null
},
{
"ActiveFlag": "y",
"ChildItemId": 0,
"DeviceName": "Ward",
"IconId": 1992,
"ItemDescription": {
"Description": "This is a ward that allows you to see normal enemy movements.",
"Menuitems": [],
"SecondaryDescription": "This is a ward that allows you to see normal enemy movements with 45 units. It does respect line of sight and can't see through walls or stealth. It remains for 3 minutes or until killed."
},
"ItemId": 7668,
"ItemTier": 1,
"Price": 50,
"RestrictedRoles": "no restrictions",
"RootItemId": 7668,
"ShortDesc": "Detects enemies within an area.",
"StartingItem": false,
"Type": "Consumable",
"itemIcon_URL": "https://webcdn.hirezstudios.com/smite/item-icons/ward.jpg",
"ret_msg": null
},
{
"ActiveFlag": "y",
"ChildItemId": 0,
"DeviceName": "Elixir of Power",
"IconId": 2064,
"ItemDescription": {
"Description": "This consumable increases your Magical and Physical Power.",
"Menuitems": [],
"SecondaryDescription": "This consumable increases your Magical and Physical Power by 25%, increases damage done to Structures by 25%, and grants 10% Penetration for 6 minutes. This effect persists through death."
},
"ItemId": 7803,
"ItemTier": 1,
"Price": 3000,
"RestrictedRoles": "no restrictions",
"RootItemId": 7803,
"ShortDesc": "Provides a Power buff.",
"StartingItem": false,
"Type": "Consumable",
"itemIcon_URL": "https://webcdn.hirezstudios.com/smite/item-icons/elixir-of-power.jpg",
"ret_msg": null
},
{
"ActiveFlag": "y",
"ChildItemId": 0,
"DeviceName": "Elixir of Defense",
"IconId": 2065,
"ItemDescription": {
"Description": "This consumable increases your Magical and Physical Protections.",
"Menuitems": [],
"SecondaryDescription": "This consumable provides 50 Magical and Physical Protection, 5% Damage Mitigation, 20% Crowd Control Reduction, and decreases damage taken from Structures by 25% for 6 minutes. This effect persists through death."
},
"ItemId": 7804,
"ItemTier": 1,
"Price": 3000,
"RestrictedRoles": "no restrictions",
"RootItemId": 7804,
"ShortDesc": "Provides a Defense buff.",
"StartingItem": false,
"Type": "Consumable",
"itemIcon_URL": "https://webcdn.hirezstudios.com/smite/item-icons/elixir-of-defense.jpg",
"ret_msg": null
},
{
"ActiveFlag": "y",
"ChildItemId": 0,
"DeviceName": "Mace",
"IconId": 2890,
"ItemDescription": {
"Description": "Physical Power and Penetration.",
"Menuitems": [
{
"Description": "Physical Power",
"Value": "+15"
}
],
"SecondaryDescription": null
},
"ItemId": 7827,
"ItemTier": 1,
"Price": 650,
"RestrictedRoles": "no restrictions",
"RootItemId": 7827,
"ShortDesc": "Physical Power and Penetration.",
"StartingItem": false,
"Type": "Item",
"itemIcon_URL": "https://webcdn.hirezstudios.com/smite/item-icons/mace.jpg",
"ret_msg": null
},
{
"ActiveFlag": "y",
"ChildItemId": 7827,
"DeviceName": "Warrior's Bane",
"IconId": 2888,
"ItemDescription": {
"Description": "This item grants the owner physical penetration.",
"Menuitems": [
{
"Description": "Physical Power",
"Value": "+20"
},
{
"Description": "Physical Penetration",
"Value": "+10%"
}
],
"SecondaryDescription": null
},
"ItemId": 7522,
"ItemTier": 2,
"Price": 850,
"RestrictedRoles": "no restrictions",
"RootItemId": 7827,
"ShortDesc": "Physical Power and Penetration",
"StartingItem": false,
"Type": "Item",
"itemIcon_URL": "https://webcdn.hirezstudios.com/smite/item-icons/warriors-bane.jpg",
"ret_msg": null
},
{
"ActiveFlag": "y",
"ChildItemId": 7827,
"DeviceName": "Heavy Mace",
"IconId": 2889,
"ItemDescription": {
"Description": "",
"Menuitems": [
{
"Description": "Physical Power",
"Value": "+25"
},
{
"Description": "Physical Penetration",
"Value": "+10"
}
],
"SecondaryDescription": ""
},
"ItemId": 7828,
"ItemTier": 2,
"Price": 900,
"RestrictedRoles": "no restrictions",
"RootItemId": 7827,
"ShortDesc": "Physical Power and Penetration.",
"StartingItem": false,
"Type": "Item",
"itemIcon_URL": "https://webcdn.hirezstudios.com/smite/item-icons/heavy-mace.jpg",
"ret_msg": null
},
{
"ActiveFlag": "y",
"ChildItemId": 7522,
"DeviceName": "Titan's Bane",
"IconId": 2885,
"ItemDescription": {
"Description": "",
"Menuitems": [
{
"Description": "Physical Power",
"Value": "+40"
},
{
"Description": "Physical Penetration",
"Value": "+20%"
}
],
"SecondaryDescription": "PASSIVE - Your first ability cast gains 20% Physical Penetration. This can only occur once every 10 seconds."
},
"ItemId": 7523,
"ItemTier": 3,
"Price": 1050,
"RestrictedRoles": "no restrictions",
"RootItemId": 7827,
"ShortDesc": "Bonus Physical Penetration on abilities",
"StartingItem": false,
"Type": "Item",
"itemIcon_URL": "https://webcdn.hirezstudios.com/smite/item-icons/titans-bane.jpg",
"ret_msg": null
},
{
"ActiveFlag": "y",
"ChildItemId": 7828,
"DeviceName": "Brawler's Beat Stick",
"IconId": 2585,
"ItemDescription": {
"Description": "This item causes your Basic Attacks to reduce the healing of your target.",
"Menuitems": [
{
"Description": "Physical Power",
"Value": "+40"
},
{
"Description": "Physical Penetration",
"Value": "+15"
}
],
"SecondaryDescription": "PASSIVE - Enemies hit by your Abilities have 40% reduced healing for 6 seconds."
},
"ItemId": 7829,
"ItemTier": 3,
"Price": 800,
"RestrictedRoles": "no restrictions",
"RootItemId": 7827,
"ShortDesc": "Ability Damage reduces enemy healing.",
"StartingItem": false,
"Type": "Item",
"itemIcon_URL": "https://webcdn.hirezstudios.com/smite/item-icons/brawlers-beat-stick.jpg",
"ret_msg": null
},
{
"ActiveFlag": "y",
"ChildItemId": 7828,
"DeviceName": "Jotunn's Wrath",
"IconId": 2887,
"ItemDescription": {
"Description": "This item gives the owner reduced cooldown on their abilities.",
"Menuitems": [
{
"Description": "Physical Power",
"Value": "+50"
},
{
"Description": "Mana",
"Value": "+150"
},
{
"Description": "Physical Penetration",
"Value": "+10"
},
{
"Description": "Cooldown Reduction",
"Value": "+20%"
}
],
"SecondaryDescription": ""
},
"ItemId": 7904,
"ItemTier": 3,
"Price": 800,
"RestrictedRoles": "no restrictions",
"RootItemId": 7827,
"ShortDesc": "Cooldown Reduction and Physical Penetration",
"StartingItem": false,
"Type": "Item",
"itemIcon_URL": "https://webcdn.hirezstudios.com/smite/item-icons/jotunns-wrath.jpg",
"ret_msg": null
},
{
"ActiveFlag": "y",
"ChildItemId": 7828,
"DeviceName": "The Crusher",
"IconId": 3489,
"ItemDescription": {
"Description": "This item grants the owner Physical Penetration.",
"Menuitems": [
{
"Description": "Physical Power",
"Value": "+30"
},
{
"Description": "Attack Speed",
"Value": "+20%"
},
{
"Description": "Physical Penetration",
"Value": "+15"
}
],
"SecondaryDescription": "PASSIVE - Enemies hit by your damaging Abilities take an additional 20 Physical Damage + 15% of your Physical Power over 2s."
},
"ItemId": 11111,
"ItemTier": 3,
"Price": 850,
"RestrictedRoles": "no restrictions",
"RootItemId": 7827,
"ShortDesc": "Bonus damage on Abilities",
"StartingItem": false,
"Type": "Item",
"itemIcon_URL": "https://webcdn.hirezstudios.com/smite/item-icons/the-crusher.jpg",
"ret_msg": null
},
{
"ActiveFlag": "y",
"ChildItemId": 0,
"DeviceName": "Morningstar",
"IconId": 2946,
"ItemDescription": {
"Description": "Physical Power and Mana.",
"Menuitems": [
{
"Description": "Physical Power",
"Value": "+10"
},
{
"Description": "MP5",
"Value": "+5"
}
],
"SecondaryDescription": null
},
"ItemId": 7922,
"ItemTier": 1,
"Price": 600,
"RestrictedRoles": "no restrictions",
"RootItemId": 7922,
"ShortDesc": "Physical Power and Mana",
"StartingItem": false,
"Type": "Item",
"itemIcon_URL": "https://webcdn.hirezstudios.com/smite/item-icons/morningstar.jpg",
"ret_msg": null
},
{
"ActiveFlag": "y",
"ChildItemId": 7922,
"DeviceName": "Charged Morningstar",
"IconId": 2948,
"ItemDescription": {
"Description": "",
"Menuitems": [
{
"Description": "Physical Power",
"Value": "+20"
},
{
"Description": "Mana",
"Value": "+150"
},
{
"Description": "MP5",
"Value": "+7"
}
],
"SecondaryDescription": ""