-
Notifications
You must be signed in to change notification settings - Fork 0
/
smiteitems.html
8297 lines (8292 loc) Β· 517 KB
/
smiteitems.html
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>SMITE Items</title>
<link rel="stylesheet" href="smiteitems.css">
</head>
<body>
<h1>SMITE Items Overview</h1>
<div>
<label>Filter</label><input type="text" id="item-filter">
</div>
<details class="items-container">
<summary>Starter Items</summary>
<div class="items">
<div class="item" data-id="15486" data-isactive="False">
<div class="item-desc">
<img class="icon" src="https://webcdn.hirezstudios.com/smite/item-icons/assassins-blessing.jpg" alt="Assassin's Blessing">
<div class="name">Assassin's Blessing</div>
<div class="price">π° Price: 700</div>
<div class="properties">
</div>
<details class="description shortdesc"><summary>ShortDesc</summary>Starter Item for Junglers</details>
<details class="description passive"><summary>Passive</summary><p>+7 Power 
+100 Health 
+30% Damage vs. Jungle Monsters 
+8% Health and 25 Mana Restored on Killing a Jungle Monster

ROLE QUEST: JUNGLE Kill or Assist Jungle Monsters or Enemy Gods to gain stacks. Jungle Monsters are worth 1 stack and Enemy Gods are worth 5 stacks. At 50 Stacks Assassin's Blessing Evolves, gaining +5 Penetration, and 5% Movement Speed.</p></details>
</div>
</div>
<div class="item" data-id="15577" data-isactive="False">
<div class="item-desc">
<img class="icon" src="https://webcdn.hirezstudios.com/smite/item-icons/attackers-blessing.jpg" alt="Attacker's Blessing">
<div class="name">Attacker's Blessing</div>
<div class="price">π° Price: 700</div>
<div class="properties">
</div>
<details class="description shortdesc"><summary>ShortDesc</summary>Blessing for Damage Dealers</details>
<details class="description passive"><summary>Passive</summary><p>+20 Physical Power
+25 Magical Power

ROLE QUEST: DAMAGE
Damage lane minions and Enemy gods to gain stacks. Dealing 100 damage to Lane Minions provide 1 Stack and Dealing 100 damage to Enemy gods provide 3 Stacks. At 100 Stacks Attacker's Blessing Evolves, gaining 10 Penetration.</p></details>
</div>
</div>
<div class="item" data-id="19634" data-isactive="True">
<div class="item-desc">
<img class="icon" src="https://webcdn.hirezstudios.com/smite/item-icons/benevolence.jpg" alt="Benevolence">
<div class="name">Benevolence</div>
<div class="price">π° Price: 600</div>
<div class="properties">
<span class="propkey propkey-health" style="color: green;" aria-label="Health ">HP</span>
<span>+100</span>
<span class="propkey propkey-hp5" style="color: green;" aria-label="HP5 ">HP5</span>
<span>+10</span>
<span class="propkey propkey-mp5" style="color: blue;" aria-label="MP5 ">MP5</span>
<span>+10</span>
</div>
<details class="description shortdesc"><summary>ShortDesc</summary>Be benevolent and restore your allies!</details>
<details class="description passive"><summary>Passive</summary><p>PASSIVE - While not near an ally god you gain 1 stack of Benevolence every second, up to a maximum of 50. Assists provide 4 stacks. While within 70 units of a hurt ally god you use up to 5 stacks a second to heal them and yourself for 1% of your Maximum Health. Each stack consumed provides you with 1 gold. If you overcap stacks they will still provide gold as long as you are near an ally god. Can be upgraded at level 15.</p></details>
<details class="description fulldesc">
<summary>Desc</summary>
<div class="description">
<p>Be benevolent and restore your allies!</p>
</div>
</details>
</div>
</div>
<div class="item" data-id="23855" data-isactive="True">
<div class="item-desc">
<img class="icon" src="https://webcdn.hirezstudios.com/smite/item-icons/bluestone-pendant.jpg" alt="Bluestone Pendant">
<div class="name">Bluestone Pendant</div>
<div class="price">π° Price: 650</div>
<div class="properties">
<span class="propkey propkey-hp5" style="color: green;" aria-label="HP5 ">HP5</span>
<span>+15</span>
<span class="propkey propkey-mp5" style="color: blue;" aria-label="MP5 ">MP5</span>
<span>+10</span>
<span class="propkey propkey-physicalpower" aria-label="Physical Power ">Phys Pwr</span>
<span>+15</span>
</div>
<details class="description shortdesc"><summary>ShortDesc</summary>Deal additional damage with abilities</details>
<details class="description passive"><summary>Passive</summary><p>PASSIVE - Enemies hit by your damaging Abilities take an additional 40 Physical Damage over 2s. Subsequent hits on the same target do half the bonus damage for the next 3s. Can be upgraded at level 20.</p></details>
</div>
</div>
<div class="item" data-id="19502" data-isactive="True">
<div class="item-desc">
<img class="icon" src="https://webcdn.hirezstudios.com/smite/item-icons/bumbas-dagger.jpg" alt="Bumba's Dagger">
<div class="name">Bumba's Dagger</div>
<div class="price">π° Price: 600</div>
<div class="properties">
<span class="propkey propkey-health" style="color: green;" aria-label="Health ">HP</span>
<span>+50</span>
<span class="propkey propkey-mana" style="color: blue;" aria-label="Mana ">MP</span>
<span>+50</span>
<span class="propkey propkey-physicalpower" aria-label="Physical Power ">Phys Pwr</span>
<span>+13</span>
<span class="propkey propkey-magicalpower" aria-label="Magical Power ">Mag Pwr</span>
<span>+25</span>
</div>
<details class="description shortdesc"><summary>ShortDesc</summary>Defeating Jungle Monsters provides health and mana</details>
<details class="description passive"><summary>Passive</summary><p>PASSIVE - Your Basic Attacks deal +25 True Damage and your Abilities deal +35% Damage versus Jungle Monsters. When you kill a Jungle Monster you are restored for 10% of the Monster's Health and 25 Mana. Can be upgraded at level 20.</p></details>
<details class="description fulldesc">
<summary>Desc</summary>
<div class="description">
<p>Gives users Gold and Mana for killing Jungle monsters.</p>
</div>
</details>
</div>
</div>
<div class="item" data-id="19677" data-isactive="True">
<div class="item-desc">
<img class="icon" src="https://webcdn.hirezstudios.com/smite/item-icons/conduit-gem.jpg" alt="Conduit Gem">
<div class="name">Conduit Gem</div>
<div class="price">π° Price: 700</div>
<div class="properties">
<span class="propkey propkey-mana" style="color: blue;" aria-label="Mana ">MP</span>
<span>+100</span>
<span class="propkey propkey-mp5" style="color: blue;" aria-label="MP5 ">MP5</span>
<span>+10</span>
<span class="propkey propkey-magicalpower" aria-label="Magical Power ">Mag Pwr</span>
<span>+25</span>
</div>
<details class="description shortdesc"><summary>ShortDesc</summary>Focus your power and release it.</details>
<details class="description passive"><summary>Passive</summary><p>PASSIVE - Every 0.5 seconds you gain a stack of Arcane Energy, causing your next damaging ability to deal an additional 2 True Damage and remove all stacks. Also deals an additional 1 true damage per stack to minions. This effect stacks up to 20 times. Can be upgraded at level 20.</p></details>
<details class="description fulldesc">
<summary>Desc</summary>
<div class="description">
<p>Focus your power and release it.</p>
</div>
</details>
</div>
</div>
<div class="item" data-id="19492" data-isactive="True">
<div class="item-desc">
<img class="icon" src="https://webcdn.hirezstudios.com/smite/item-icons/deaths-toll.jpg" alt="Death's Toll">
<div class="name">Death's Toll</div>
<div class="price">π° Price: 650</div>
<div class="properties">
<span class="propkey propkey-health" style="color: green;" aria-label="Health ">HP</span>
<span>+75</span>
<span class="propkey propkey-physicalpower" aria-label="Physical Power ">Phys Pwr</span>
<span>+18</span>
<span class="propkey propkey-magicalpower" aria-label="Magical Power ">Mag Pwr</span>
<span>+35</span>
</div>
<details class="description shortdesc"><summary>ShortDesc</summary>Basic Attacks restore health and mana</details>
<details class="description passive"><summary>Passive</summary><p>PASSIVE - Hitting an enemy with a Basic Attack restores 2 Health (+0.3% of your Maximum Health) and 1 Mana (+1% of your Maximum Mana). Basic Attacks that deal damage in an AoE restore less health (75% for Melee Attacks, 50% for Ranged Attacks) for each enemy hit after the first. Can be upgraded at level 20.</p></details>
<details class="description fulldesc">
<summary>Desc</summary>
<div class="description">
<p>Basic Attack restore the wielder. </p>
</div>
</details>
</div>
</div>
<div class="item" data-id="15597" data-isactive="False">
<div class="item-desc">
<img class="icon" src="https://webcdn.hirezstudios.com/smite/item-icons/defenders-blessing.jpg" alt="Defender's Blessing">
<div class="name">Defender's Blessing</div>
<div class="price">π° Price: 700</div>
<div class="properties">
</div>
<details class="description shortdesc"><summary>ShortDesc</summary>Blessing for Tanks</details>
<details class="description passive"><summary>Passive</summary><p>+100 Health
+10 Physical Protection
+10 Magical Protection

ROLE QUEST: TANK
Mitigate damage to gain Stacks. Mitigating 50 damage provides 1 Stack. At 75 Stacks Defender's Blessing Evolves, gaining +150 Health and Mana.</p></details>
</div>
</div>
<div class="item" data-id="19694" data-isactive="True">
<div class="item-desc">
<img class="icon" src="https://webcdn.hirezstudios.com/smite/item-icons/eye-of-the-jungle.jpg" alt="Eye of the Jungle">
<div class="name">Eye of the Jungle</div>
<div class="price">π° Price: 650</div>
<div class="properties">
<span class="propkey propkey-hp5" style="color: green;" aria-label="HP5 ">HP5</span>
<span>+10</span>
<span class="propkey propkey-physicalpower" aria-label="Physical Power ">Phys Pwr</span>
<span>+15</span>
<span class="propkey propkey-magicalpower" aria-label="Magical Power ">Mag Pwr</span>
<span>+30</span>
<span class="propkey propkey-physicalprotection" aria-label="Physical Protection ">Phys Prot</span>
<span>+7</span>
</div>
<details class="description shortdesc"><summary>ShortDesc</summary>Slay camps to gain new vision</details>
<details class="description passive"><summary>Passive</summary><p>PASSIVE - You deal 30% increased damage to Jungle Monsters. Upon defeating a Large Jungle Monster you place a ward at its location that lasts for 30 seconds. While in the jungle you gain 3% Movement Speed, +20 HP5 and +15 MP5 Can be upgraded at level 20.</p></details>
<details class="description fulldesc">
<summary>Desc</summary>
<div class="description">
<p>Steal enemy monsters away and gain new sight.</p>
</div>
</details>
</div>
</div>
<div class="item" data-id="16397" data-isactive="True">
<div class="item-desc">
<img class="icon" src="https://webcdn.hirezstudios.com/smite/item-icons/fighters-mask.jpg" alt="Fighter's Mask">
<div class="name">Fighter's Mask</div>
<div class="price">π° Price: 650</div>
<div class="properties">
<span class="propkey propkey-hp5" style="color: green;" aria-label="HP5 ">HP5</span>
<span>+10</span>
<span class="propkey propkey-mp5" style="color: blue;" aria-label="MP5 ">MP5</span>
<span>+10</span>
<span class="propkey propkey-physicalpower" aria-label="Physical Power ">Phys Pwr</span>
<span>+15</span>
<span class="propkey propkey-magicalpower" aria-label="Magical Power ">Mag Pwr</span>
<span>+25</span>
</div>
<details class="description shortdesc"><summary>ShortDesc</summary>Trade tankiness for power.</details>
<details class="description passive"><summary>Passive</summary><p>PASSIVE - <font color='#42F46E'>Increase Damage Dealt by 5% + 0.25% per your god’s level.
<font color='#F44242'>Increase Damage Taken by 6% + 0.1% per your god’s level.
PASSIVE - This item grants 2 MP5 per 10% of your missing Mana. Your abilities deal +10 Bonus Ability True Damage to minions. <n>Can be upgraded at level 20.</p></details>
<details><summary>Role Restr</summary>assassin,hunter,mage</details>
</div>
</div>
<div class="item" data-id="19494" data-isactive="True">
<div class="item-desc">
<img class="icon" src="https://webcdn.hirezstudios.com/smite/item-icons/gilded-arrow.jpg" alt="Gilded Arrow">
<div class="name">Gilded Arrow</div>
<div class="price">π° Price: 650</div>
<div class="properties">
<span class="propkey propkey-health" style="color: green;" aria-label="Health ">HP</span>
<span>+50</span>
<span class="propkey propkey-mp5" style="color: blue;" aria-label="MP5 ">MP5</span>
<span>+7</span>
<span class="propkey propkey-basicattackdamage" aria-label="Basic Attack Damage ">Basic Attack Damage</span>
<span>+20</span>
</div>
<details class="description shortdesc"><summary>ShortDesc</summary>Mark a minion as your bounty</details>
<details class="description passive"><summary>Passive</summary><p>PASSIVE - Every 8s the highest health enemy minion or jungle monster within 80 units of you is marked. If you secure the killing blow on that target you gain 4 bonus gold and 25% attack speed for 8s, and restore 30 Mana. Can be upgraded at level 20.</p></details>
<details class="description fulldesc">
<summary>Desc</summary>
<div class="description">
<p>Mark a minion as your bounty.</p>
</div>
</details>
</div>
</div>
<div class="item" data-id="15473" data-isactive="False">
<div class="item-desc">
<img class="icon" src="https://webcdn.hirezstudios.com/smite/item-icons/guardians-blessing.jpg" alt="Guardian's Blessing">
<div class="name">Guardian's Blessing</div>
<div class="price">π° Price: 700</div>
<div class="properties">
</div>
<details class="description shortdesc"><summary>ShortDesc</summary>Starter Item for Supports</details>
<details class="description passive"><summary>Passive</summary><p>+100 Health
+10 Physical Protection and Magical Protection
+7 HP5 & 7 MP5 while within 60ft of an ally god
+3 Gold per Minion Assisted

ROLE QUEST: SUPPORT
Assist with Minion kills to gain stacks. Each Assist is worth 1 stack. At 50 stacks Guardian's Blessing Evolves, gaining 4 Gold Per 5s.</p></details>
</div>
</div>
<div class="item" data-id="15489" data-isactive="False">
<div class="item-desc">
<img class="icon" src="https://webcdn.hirezstudios.com/smite/item-icons/hunters-blessing.jpg" alt="Hunter's Blessing">
<div class="name">Hunter's Blessing</div>
<div class="price">π° Price: 700</div>
<div class="properties">
</div>
<details class="description shortdesc"><summary>ShortDesc</summary>Starter Item for Basic Attack Carries</details>
<details class="description passive"><summary>Passive</summary><p>+15 Basic Attack Damage
+10 MP5 

ROLE QUEST: CARRY
Kill or Assist Lane Minions or Enemy gods to gain stacks. Lane Minions are worth 1 Stack and Enemy gods are worth 5 Stacks. At 75 Stacks Hunter's Blessing Evolves, gaining 15% Attack Speed and an additional 15 Bonus Basic Attack Damage.</p></details>
</div>
</div>
<div class="item" data-id="25773" data-isactive="True">
<div class="item-desc">
<img class="icon" src="https://webcdn.hirezstudios.com/smite/item-icons/leather-cowl.jpg" alt="Leather Cowl">
<div class="name">Leather Cowl</div>
<div class="price">π° Price: 650</div>
<div class="properties">
<span class="propkey propkey-mp5" style="color: blue;" aria-label="MP5 ">MP5</span>
<span>+5</span>
<span class="propkey propkey-attackspeed" aria-label="Attack Speed ">AtkSpd</span>
<span>+10%</span>
<span class="propkey propkey-physicalpower" aria-label="Physical power ">Physical power</span>
<span>+15</span>
<span class="propkey propkey-physicallifesteal" aria-label="Physical Lifesteal ">Physical Lifesteal</span>
<span>+6%</span>
</div>
<details class="description shortdesc"><summary>ShortDesc</summary>Stalk alone, fight together</details>
<details class="description passive"><summary>Passive</summary><p>PASSIVE - While you are within 55 units of an allied god you gain 10% Attack Speed. If you are alone you instead gain 5% Movement Speed. Can be upgraded at level 20.</p></details>
<details class="description fulldesc">
<summary>Desc</summary>
<div class="description">
<p>Stalk alone, fight together.</p>
</div>
</details>
</div>
</div>
<div class="item" data-id="15482" data-isactive="False">
<div class="item-desc">
<img class="icon" src="https://webcdn.hirezstudios.com/smite/item-icons/mages-blessing.jpg" alt="Mage's Blessing">
<div class="name">Mage's Blessing</div>
<div class="price">π° Price: 700</div>
<div class="properties">
</div>
<details class="description shortdesc"><summary>ShortDesc</summary>Starter Item for Mid Laners</details>
<details class="description passive"><summary>Passive</summary><p>+10 Bonus Ability Damage
+10 Physical Power
+30 Magical Power
+2 MP5 Per 10% Missing Mana

ROLE QUEST: MID
Kill or Assist Lane Minions or Enemy gods to gain stacks. Lane Minions are worth 1 Stack and Enemy gods are worth 5 Stacks. At 75 Stacks Mage's Blessing Evolves, gaining 10% Cooldown Reduction.</p></details>
</div>
</div>
<div class="item" data-id="19500" data-isactive="True">
<div class="item-desc">
<img class="icon" src="https://webcdn.hirezstudios.com/smite/item-icons/manikin-scepter.jpg" alt="Manikin Scepter">
<div class="name">Manikin Scepter</div>
<div class="price">π° Price: 650</div>
<div class="properties">
<span class="propkey propkey-basicattackdamage" aria-label="Basic Attack Damage ">Basic Attack Damage</span>
<span>+10</span>
<span class="propkey propkey-attackspeed" aria-label="Attack Speed ">AtkSpd</span>
<span>+7%</span>
</div>
<details class="description shortdesc"><summary>ShortDesc</summary>Basic attack hits burn enemies. Jungle Monsters take extra damage.</details>
<details class="description passive"><summary>Passive</summary><p>PASSIVE - Enemies hit by your Basic Attacks are burned, taking 16 Physical Damage (+7% of your Physical and Magical Power) over 2s and have their Attack Speed reduced by 4.5%. Gods take 50% damage. Jungle Monsters take 4x the amount of damage and restore 2.5% Health and 5% Mana when they die. This effect can stack up to 3 times. Can be upgraded at level 20.</p></details>
<details class="description fulldesc">
<summary>Desc</summary>
<div class="description">
<p>This item burns and slows enemies.</p>
</div>
</details>
</div>
</div>
<div class="item" data-id="23048" data-isactive="True">
<div class="item-desc">
<img class="icon" src="https://webcdn.hirezstudios.com/smite/item-icons/protectors-mask.jpg" alt="Protector's Mask">
<div class="name">Protector's Mask</div>
<div class="price">π° Price: 550</div>
<div class="properties">
<span class="propkey propkey-health" style="color: green;" aria-label="Health ">HP</span>
<span>+125</span>
<span class="propkey propkey-mana" style="color: blue;" aria-label="Mana ">MP</span>
<span>+100</span>
</div>
<details class="description shortdesc"><summary>ShortDesc</summary>Trade damage for tankiness.</details>
<details class="description passive"><summary>Passive</summary><p>PASSIVE - <font color='#F44242'>Decrease damage dealt by 6% + 0.25% per your god's level. <font color='#42F46E'>Decrease Damage Taken by 6% + 0.25% per your god's level. 
PASSIVE - Getting the assist for an enemy minion or jungle monster dying will provide 8 bonus gold and restore 12 health and 15 mana. If you are not within 30 units of an allied god for 20 seconds this passive is disabled until you are near an allied god again. <n>Can be upgraded at level 15.</p></details>
<details><summary>Role Restr</summary>guardian,warrior</details>
</div>
</div>
<div class="item" data-id="14090" data-isactive="False">
<div class="item-desc">
<img class="icon" src="https://webcdn.hirezstudios.com/smite/item-icons/sands-of-time.jpg" alt="Sands of Time">
<div class="name">Sands of Time</div>
<div class="price">π° Price: 800</div>
<div class="properties">
<span class="propkey propkey-mp5" style="color: blue;" aria-label="MP5 ">MP5</span>
<span>+5</span>
<span class="propkey propkey-cooldownreduction" aria-label="Cooldown Reduction ">CdRd</span>
<span>+10%</span>
<span class="propkey propkey-magicalpower" aria-label="Magical Power ">Mag Pwr</span>
<span>+20</span>
</div>
<details class="description shortdesc"><summary>ShortDesc</summary>Cooldown Reduction and MP5</details>
<details class="description passive"><summary>Passive</summary><p>PASSIVE - This item grants 2 MP5 per 10% of your missing Mana</p></details>
<details class="description fulldesc">
<summary>Desc</summary>
<div class="description">
<p>This starting item reduces your cooldowns when you are hit by a Physical God</p>
</div>
</details>
</div>
</div>
<div class="item" data-id="19508" data-isactive="True">
<div class="item-desc">
<img class="icon" src="https://webcdn.hirezstudios.com/smite/item-icons/sands-of-time.jpg" alt="Sands of Time">
<div class="name">Sands of Time</div>
<div class="price">π° Price: 700</div>
<div class="properties">
<span class="propkey propkey-mp5" style="color: blue;" aria-label="MP5 ">MP5</span>
<span>+10</span>
<span class="propkey propkey-cooldownreduction" aria-label="Cooldown Reduction ">CdRd</span>
<span>+10%</span>
<span class="propkey propkey-magicalpower" aria-label="Magical Power ">Mag Pwr</span>
<span>+25</span>
</div>
<details class="description shortdesc"><summary>ShortDesc</summary>Cooldown Reduction and MP5</details>
<details class="description passive"><summary>Passive</summary><p>PASSIVE - This item grants 2 MP5 per 10% of your missing Mana. Your damaging abilities deal an extra 15 true damage to minions. Can be upgraded at level 20.</p></details>
<details class="description fulldesc">
<summary>Desc</summary>
<div class="description">
<p>Cooldown Reduction and MP5</p>
</div>
</details>
</div>
</div>
<div class="item" data-id="19609" data-isactive="True">
<div class="item-desc">
<img class="icon" src="https://webcdn.hirezstudios.com/smite/item-icons/sentinels-gift.jpg" alt="Sentinel's Gift">
<div class="name">Sentinel's Gift</div>
<div class="price">π° Price: 550</div>
<div class="properties">
<span class="propkey propkey-health" style="color: green;" aria-label="Health ">HP</span>
<span>+100</span>
<span class="propkey propkey-mp5" style="color: blue;" aria-label="MP5 ">MP5</span>
<span>+7</span>
<span class="propkey propkey-physicalprotection" aria-label="Physical Protection ">Phys Prot</span>
<span>+10</span>
<span class="propkey propkey-magicalprotection" aria-label="Magical Protection ">Mag Prot</span>
<span>+10</span>
</div>
<details class="description shortdesc"><summary>ShortDesc</summary>Assists provide health, mana, and gold.</details>
<details class="description passive"><summary>Passive</summary><p>PASSIVE - Getting the assist for an enemy minion or jungle monster dying will provide 8 Bonus gold and restore 12 Health and 8 Mana. If you are not within 30 units of an allied god for 20 seconds this passive is disabled until you are near an allied god again. Can be upgraded at level 15.</p></details>
<details class="description fulldesc">
<summary>Desc</summary>
<div class="description">
<p>Assist provide health, mana, and gold.</p>
</div>
</details>
</div>
</div>
<div class="item" data-id="15571" data-isactive="False">
<div class="item-desc">
<img class="icon" src="https://webcdn.hirezstudios.com/smite/item-icons/specialists-blessing.jpg" alt="Specialist's Blessing">
<div class="name">Specialist's Blessing</div>
<div class="price">π° Price: 700</div>
<div class="properties">
</div>
<details class="description shortdesc"><summary>ShortDesc</summary>Blessing for Healers</details>
<details class="description passive"><summary>Passive</summary><p>+10 HP5
+20 MP5
+10% Cooldown Reduction

ROLE QUEST: UTILITY
Damage enemies or Heal allies to gain stacks. Each time an enemy is damaged or an ally god is healed by your abilities, gain 1 stack. Each ability can only trigger 3 stacks. At 75 Stacks Specialist's Blessing Evolves, gaining 10% Movement Speed.</p></details>
</div>
</div>
<div class="item" data-id="19640" data-isactive="True">
<div class="item-desc">
<img class="icon" src="https://webcdn.hirezstudios.com/smite/item-icons/tainted-steel.jpg" alt="Tainted Steel">
<div class="name">Tainted Steel</div>
<div class="price">π° Price: 600</div>
<div class="properties">
<span class="propkey propkey-physicalpower" aria-label="Physical Power ">Phys Pwr</span>
<span>+15</span>
<span class="propkey propkey-magicalpower" aria-label="Magical Power ">Mag Pwr</span>
<span>+25</span>
<span class="propkey propkey-physicalprotection" aria-label="Physical Protection ">Phys Prot</span>
<span>+15</span>
<span class="propkey propkey-magicalprotection" aria-label="Magical Protection ">Mag Prot</span>
<span>+15</span>
</div>
<details class="description shortdesc"><summary>ShortDesc</summary>Hit an enemy to steal their healing</details>
<details class="description passive"><summary>Passive</summary><p>PASSIVE - Enemy Gods that you hit have their healing taken reduced by 20% for 5s. You are healed for 120% of the healing reduced. Can be upgraded at level 20.</p></details>
<details class="description fulldesc">
<summary>Desc</summary>
<div class="description">
<p>Hit an enemy to reduce their healing taken.</p>
</div>
</details>
</div>
</div>
<div class="item" data-id="25769" data-isactive="True">
<div class="item-desc">
<img class="icon" src="https://webcdn.hirezstudios.com/smite/item-icons/vampiric-shroud.jpg" alt="Vampiric Shroud">
<div class="name">Vampiric Shroud</div>
<div class="price">π° Price: 650</div>
<div class="properties">
<span class="propkey propkey-mp5" style="color: blue;" aria-label="MP5 ">MP5</span>
<span>+10</span>
<span class="propkey propkey-magicalpower" aria-label="Magical Power ">Mag Pwr</span>
<span>+30</span>
<span class="propkey propkey-magicallifesteal" aria-label="Magical Lifesteal ">Magical Lifesteal</span>
<span>+6%</span>
</div>
<details class="description shortdesc"><summary>ShortDesc</summary>Bonus Sustain from hitting Abilities</details>
<details class="description passive"><summary>Passive</summary><p>PASSIVE - Damaging any enemy with an ability restores 2 health and 6 mana. Can only trigger once per target per ability. Can be upgraded at level 20.</p></details>
<details class="description fulldesc">
<summary>Desc</summary>
<div class="description">
<p>This starting item is for Magical users and gives them a chance to gain Health and Mana.</p>
</div>
</details>
</div>
</div>
<div class="item" data-id="24195" data-isactive="True">
<div class="item-desc">
<img class="icon" src="https://webcdn.hirezstudios.com/smite/item-icons/war-flag.jpg" alt="War Flag">
<div class="name">War Flag</div>
<div class="price">π° Price: 600</div>
<div class="properties">
<span class="propkey propkey-health" style="color: green;" aria-label="Health ">HP</span>
<span>+100</span>
<span class="propkey propkey-mp5" style="color: blue;" aria-label="MP5 ">MP5</span>
<span>+10</span>
<span class="propkey propkey-physicalprotection" aria-label="Physical Protection ">Phys Prot</span>
<span>+10</span>
<span class="propkey propkey-magicalprotection" aria-label="Magical Protection ">Mag Prot</span>
<span>+10</span>
</div>
<details class="description shortdesc"><summary>ShortDesc</summary>Assists empower you and your allies</details>
<details class="description passive"><summary>Passive</summary><p>PASSIVE - Getting the assist for an enemy minion or jungle monster dying will provide 8 Bonus gold and restore 8 Health and 5 Mana. You and nearby allied gods also receive a stack that gives 1% Movement Speed and 2% Attack Speed for 10s to nearby allies up to 10 stacks. Can be upgraded at level 15.</p></details>
<details class="description fulldesc">
<summary>Desc</summary>
<div class="description">
<p>This starter item restores its user's Health and Mana when in assist range of a slain minion.</p>
</div>
</details>
</div>
</div>
<div class="item" data-id="20698" data-isactive="False">
<div class="item-desc">
<img class="icon" src="https://webcdn.hirezstudios.com/smite/item-icons/war-flag-old.jpg" alt="War Flag (OLD)">
<div class="name">War Flag (OLD)</div>
<div class="price">π° Price: 600</div>
<div class="properties">
<span class="propkey propkey-health" style="color: green;" aria-label="Health ">HP</span>
<span>+100</span>
<span class="propkey propkey-mp5" style="color: blue;" aria-label="MP5 ">MP5</span>
<span>+10</span>
<span class="propkey propkey-physicalprotection" aria-label="Physical Protection ">Phys Prot</span>
<span>+10</span>
<span class="propkey propkey-magicalprotection" aria-label="Magical Protection ">Mag Prot</span>
<span>+10</span>
</div>
<details class="description shortdesc"><summary>ShortDesc</summary>Assists empower you and your allies.</details>
<details class="description passive"><summary>Passive</summary><p>PASSIVE - Getting an assist when an enemy dies provides a stack that gives 1% Movement Speed and 2% Attack Speed for 8s to nearby allies up to 10 stacks. When you've gained 3 or more stacks from assists, once per ability, each time you damage an enemy god you restore 18 Health and Mana to nearby allies within 55 units and gain 10 gold. Can be upgraded at level 15.</p></details>
<details class="description fulldesc">
<summary>Desc</summary>
<div class="description">
<p>This starter item restores its user's Health and Mana when in assist range of a slain minion.</p>
</div>
</details>
</div>
</div>
<div class="item" data-id="19751" data-isactive="True">
<div class="item-desc">
<img class="icon" src="https://webcdn.hirezstudios.com/smite/item-icons/warding-sigil.jpg" alt="Warding Sigil">
<div class="name">Warding Sigil</div>
<div class="price">π° Price: 650</div>
<div class="properties">
<span class="propkey propkey-physicalpower" aria-label="Physical Power ">Phys Pwr</span>
<span>+15</span>
<span class="propkey propkey-magicalpower" aria-label="Magical Power ">Mag Pwr</span>
<span>+20</span>
<span class="propkey propkey-physicalprotection" aria-label="Physical Protection ">Phys Prot</span>
<span>+15</span>
<span class="propkey propkey-magicalprotection" aria-label="Magical Protection ">Mag Prot</span>
<span>+15</span>
</div>
<details class="description shortdesc"><summary>ShortDesc</summary>Ward off enemy abilities to gain protection.</details>
<details class="description passive"><summary>Passive</summary><p>PASSIVE - When you are hit by an ability you gain a stack of Dampening, gaining 5 Protections for 5s and healing for 1% of your Max Health. This occurs only once per ability cast. This can stack twice. Can be upgraded at level 20.</p></details>
<details class="description fulldesc">
<summary>Desc</summary>
<div class="description">
<p>Ward off enemy abilities to gain protection.</p>
</div>
</details>
</div>
</div>
<div class="item" data-id="19496" data-isactive="True">
<div class="item-desc">
<img class="icon" src="https://webcdn.hirezstudios.com/smite/item-icons/warriors-axe.jpg" alt="Warrior's Axe">
<div class="name">Warrior's Axe</div>
<div class="price">π° Price: 650</div>
<div class="properties">
<span class="propkey propkey-physicalpower" aria-label="Physical Power ">Phys Pwr</span>
<span>+15</span>
<span class="propkey propkey-magicalpower" aria-label="Magical Power ">Mag Pwr</span>
<span>+15</span>
<span class="propkey propkey-physicalprotection" aria-label="Physical Protection ">Phys Prot</span>
<span>+10</span>
<span class="propkey propkey-magicalprotection" aria-label="Magical Protection ">Mag Prot</span>
<span>+10</span>
</div>
<details class="description shortdesc"><summary>ShortDesc</summary>Steal your opponent's health through combat</details>
<details class="description passive"><summary>Passive</summary><p>PASSIVE - Damaging an enemy god deals 25 (+1.5 per level) damage and restores 25 (+1.5 per level) Health and Mana. This effect can only occur once every 10s. Can be upgraded at level 20.</p></details>
<details class="description fulldesc">
<summary>Desc</summary>
<div class="description">
<p>This starter item steals life while fighting.</p>
</div>
</details>
</div>
</div>
<div class="item" data-id="15479" data-isactive="False">
<div class="item-desc">
<img class="icon" src="https://webcdn.hirezstudios.com/smite/item-icons/warriors-blessing.jpg" alt="Warrior's Blessing">
<div class="name">Warrior's Blessing</div>
<div class="price">π° Price: 700</div>
<div class="properties">
</div>
<details class="description shortdesc"><summary>ShortDesc</summary>Starter Item for Solo Laners</details>
<details class="description passive"><summary>Passive</summary><p>+75 Health
+10 Physical & Magical Protection
+25 Health Stolen And Mana Restored Upon Damaging An Enemy God, 10s Cooldown

ROLE QUEST: SOLO
Dealing damage to an enemy god provides 1 stack. This effect can only occur once every 10s. Getting a Kill or Assist on an Enemy god provides 3 stacks. At 15 Stacks Warrior's Blessing Evolves, gaining +15 Physical and Magical Protection.</p></details>
</div>
</div>
</div>
</details>
<details class="items-container">
<summary>Consumables</summary>
<div class="items consumables" style="display: grid; grid-template: auto / 100px 100px 100px 100px; justify-content: start; grid-gap: 8px;">
<div class="item" data-id="7622" data-isactive="True">
<div class="item-desc">
<img class="icon" src="https://webcdn.hirezstudios.com/smite/item-icons/mana-potion.jpg" alt="Mana Potion">
<div class="name">Mana Potion</div>
<div class="price">π° Price: 50</div>
<div class="properties">
</div>
<details class="description shortdesc"><summary>ShortDesc</summary>Restores Mana over time.</details>
<details class="description passive"><summary>Passive</summary><p>This consumable heals 150 Mana over 25 seconds.</p></details>
<details class="description fulldesc">
<summary>Desc</summary>
<div class="description">
<p>This consumable heals Mana over time.</p>
</div>
</details>
</div>
</div>
<div class="item" data-id="9804" data-isactive="True">
<div class="item-desc">
<img class="icon" src="https://webcdn.hirezstudios.com/smite/item-icons/multi-potion.jpg" alt="Multi Potion">
<div class="name">Multi Potion</div>
<div class="price">π° Price: 50</div>
<div class="properties">
</div>
<details class="description shortdesc"><summary>ShortDesc</summary>Restores Health and Mana over time.</details>
<details class="description passive"><summary>Passive</summary><p>This consumable heals 125 Health and 75 Mana over 25 seconds.</p></details>
<details class="description fulldesc">
<summary>Desc</summary>
<div class="description">
<p>This consumable heals and restores Mana over time.</p>
</div>
</details>
</div>
</div>
<div class="item" data-id="16083" data-isactive="True">
<div class="item-desc">
<img class="icon" src="https://webcdn.hirezstudios.com/smite/item-icons/barons-brew.jpg" alt="Baron's Brew">
<div class="name">Baron's Brew</div>
<div class="price">π° Price: 150</div>
<div class="properties">
</div>
<details class="description shortdesc"><summary>ShortDesc</summary>Restores Health and Mana over time.</details>
<details class="description passive"><summary>Passive</summary><p>Rum from Baron Samedi's personal cabinet. This consumable heals 140 Health and 100 Mana over 20 seconds per use. Comes with 3 uses that are refilled if you enter the Fountain, sells for 0 gold.</p></details>
<details class="description fulldesc">
<summary>Desc</summary>
<div class="description">
<p>This consumable heals and restores Mana over time.</p>
</div>
</details>
</div>
</div>
<div class="item" data-id="14031" data-isactive="True">
<div class="item-desc">
<img class="icon" src="https://webcdn.hirezstudios.com/smite/item-icons/chalice-of-healing.jpg" alt="Chalice of Healing">
<div class="name">Chalice of Healing</div>
<div class="price">π° Price: 300</div>
<div class="properties">
</div>
<details class="description shortdesc"><summary>ShortDesc</summary>Restores Health over time, can be refilled in Fountain</details>
<details class="description passive"><summary>Passive</summary><p>This consumable heals 250 Health over 25 seconds per use. Comes with 3 uses that are refilled if you enter the Fountain, sells for 0 gold.</p></details>
<details class="description fulldesc">
<summary>Desc</summary>
<div class="description">
<p>This consumable heals you over time.</p>
</div>
</details>
</div>
</div>
<div class="item" data-id="14032" data-isactive="False">
<div class="item-desc">
<img class="icon" src="https://webcdn.hirezstudios.com/smite/item-icons/chalice-of-mana.jpg" alt="Chalice of Mana">
<div class="name">Chalice of Mana</div>
<div class="price">π° Price: 300</div>
<div class="properties">
</div>
<details class="description shortdesc"><summary>ShortDesc</summary>Restores Mana over time, can be refilled in Fountain</details>
<details class="description passive"><summary>Passive</summary><p>This consumable heals 150 Mana over 25 seconds per use. Comes with 3 uses that are refilled if you enter the Fountain, sells for 0 gold</p></details>
<details class="description fulldesc">
<summary>Desc</summary>
<div class="description">
<p>This consumable heals Mana over time.</p>
</div>
</details>
</div>
</div>
<div class="item" data-id="9804" data-isactive="True">
<div class="item-desc">
<img class="icon" src="https://webcdn.hirezstudios.com/smite/item-icons/multi-potion.jpg" alt="Multi Potion">
<div class="name">Multi Potion</div>
<div class="price">π° Price: 50</div>
<div class="properties">
</div>
<details class="description shortdesc"><summary>ShortDesc</summary>Restores Health and Mana over time.</details>
<details class="description passive"><summary>Passive</summary><p>This consumable heals 125 Health and 75 Mana over 25 seconds.</p></details>
<details class="description fulldesc">
<summary>Desc</summary>
<div class="description">
<p>This consumable heals and restores Mana over time.</p>
</div>
</details>
</div>
</div>
<div class="item" data-id="14033" data-isactive="True">
<div class="item-desc">
<img class="icon" src="https://webcdn.hirezstudios.com/smite/item-icons/chalice-of-the-oracle.jpg" alt="Chalice of the Oracle">
<div class="name">Chalice of the Oracle</div>
<div class="price">π° Price: 400</div>
<div class="properties">
</div>
<details class="description shortdesc"><summary>ShortDesc</summary>Detects enemies, can be refilled in Fountain</details>
<details class="description passive"><summary>Passive</summary><p>This consumable places 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. Comes with 2 uses that are refilled in Fountain, sells for 0 gold.</p></details>
<details class="description fulldesc">
<summary>Desc</summary>
<div class="description">
<p>This is a ward that allows you to see normal enemy movements.</p>
</div>
</details>
</div>
</div>
<div class="item" data-id="7668" data-isactive="True">
<div class="item-desc">
<img class="icon" src="https://webcdn.hirezstudios.com/smite/item-icons/ward.jpg" alt="Ward">
<div class="name">Ward</div>
<div class="price">π° Price: 50</div>
<div class="properties">
</div>
<details class="description shortdesc"><summary>ShortDesc</summary>Detects enemies within an area.</details>
<details class="description passive"><summary>Passive</summary><p>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.</p></details>
<details class="description fulldesc">
<summary>Desc</summary>
<div class="description">
<p>This is a ward that allows you to see normal enemy movements.</p>
</div>
</details>
</div>
</div>
<div class="item" data-id="9005" data-isactive="True">
<div class="item-desc">
<img class="icon" src="https://webcdn.hirezstudios.com/smite/item-icons/sentry-ward.jpg" alt="Sentry Ward">
<div class="name">Sentry Ward</div>
<div class="price">π° Price: 120</div>
<div class="properties">
</div>
<details class="description shortdesc"><summary>ShortDesc</summary>Sees enemy movements and wards.</details>
<details class="description passive"><summary>Passive</summary><p>This is a ward that allows you to see enemy movements and other wards within 45 units. It does respect line of sight and can't see through walls or stealth. It remains for 3 minutes or until killed. Can only carry one at a time.</p></details>
<details class="description fulldesc">
<summary>Desc</summary>
<div class="description">
<p>This is a ward that allows you to see enemy movements.</p>
</div>
</details>
</div>
</div>
<div></div>
<div></div>
<div class="item" data-id="18200" data-isactive="False">
<div class="item-desc">
<img class="icon" src="https://webcdn.hirezstudios.com/smite/item-icons/hand-of-the-gods.jpg" alt="Hand of the Gods">
<div class="name">Hand of the Gods</div>
<div class="price">π° Price: 100</div>
<div class="properties">
</div>
<details class="description shortdesc"><summary>ShortDesc</summary>Deals damage to Jungle Monsters</details>
<details class="description passive"><summary>Passive</summary><p>This consumable deals 20000 True damage to Jungle Monsters around you. This only affects Monsters on your side of the Jungle.</p></details>
</div>
</div>
<div></div>
<div></div>
<div></div>
<div class="item" data-id="18194" data-isactive="True">
<div class="item-desc">
<img class="icon" src="https://webcdn.hirezstudios.com/smite/item-icons/potion-of-power.jpg" alt="Potion of Power">
<div class="name">Potion of Power</div>
<div class="price">π° Price: 500</div>
<div class="properties">
</div>
<details class="description shortdesc"><summary>ShortDesc</summary>Increases Power and Penetration on use</details>
<details class="description passive"><summary>Passive</summary><p>This consumable increases your Physical Power by 40, Magical Power by 70 and Penetration by 10 for 5 minutes or until you are killed.</p></details>
<details class="description fulldesc">
<summary>Desc</summary>
<div class="description">
<p>Unlocks at level 10</p>
</div>
</details>
</div>
</div>
<div class="item" data-id="7803" data-isactive="True">
<div class="item-desc">
<img class="icon" src="https://webcdn.hirezstudios.com/smite/item-icons/elixir-of-power.jpg" alt="Elixir of Power">
<div class="name">Elixir of Power</div>
<div class="price">π° Price: 3000</div>
<div class="properties">
</div>
<details class="description shortdesc"><summary>ShortDesc</summary>Provides a Power buff.</details>
<details class="description passive"><summary>Passive</summary><p>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.</p></details>
<details class="description fulldesc">
<summary>Desc</summary>
<div class="description">
<p>This consumable increases your Magical and Physical Power.</p>
</div>
</details>
</div>
</div>
<div class="item" data-id="7804" data-isactive="True">
<div class="item-desc">
<img class="icon" src="https://webcdn.hirezstudios.com/smite/item-icons/elixir-of-defense.jpg" alt="Elixir of Defense">
<div class="name">Elixir of Defense</div>
<div class="price">π° Price: 3000</div>
<div class="properties">
</div>
<details class="description shortdesc"><summary>ShortDesc</summary>Provides a Defense buff.</details>
<details class="description passive"><summary>Passive</summary><p>This consumable provides 50 Magical and Physical Protection, 10% Damage Mitigation, 20% Crowd Control Reduction, and decreases damage taken from Structures by 25% for 6 minutes. This effect persists through death.</p></details>
<details class="description fulldesc">
<summary>Desc</summary>
<div class="description">
<p>This consumable increases your Magical and Physical Protections.</p>
</div>
</details>
</div>
</div>
<div class="item" data-id="13668" data-isactive="True">
<div class="item-desc">
<img class="icon" src="https://webcdn.hirezstudios.com/smite/item-icons/scare-tactics.jpg" alt="Scare Tactics">
<div class="name">Scare Tactics</div>
<div class="price">π° Price: <i>none</i></div>
<div class="properties">
</div>
<details class="description shortdesc"><summary>ShortDesc</summary>Hit an enemy with this!</details>
<details class="description passive"><summary>Passive</summary><p>Hit an enemy with this!</p></details>
<details class="description fulldesc">
<summary>Desc</summary>
<div class="description">
<p>Hit an enemy with this!</p>
</div>
</details>
</div>
</div>
<div></div>
<div></div>
<div></div>
</div>
</details>
<details class="items-container">
<summary>Relics</summary>
<div class="items">
<div class="item" data-id="12333" data-isactive="True">
<div class="item-desc">
<img class="icon" src="https://webcdn.hirezstudios.com/smite/item-icons/relic.jpg" alt="Relic">
<div class="name">Relic</div>
<div class="price">π° Price: <i>none</i></div>
<div class="properties">
</div>
<details class="description shortdesc"><summary>ShortDesc</summary>Relics provide special powers available to all gods</details>
<details class="description passive"><summary>Passive</summary><p>Relics provide special powers available to all gods. Your first Relic is free at Level 1 and your Second Relic is unlocked once you reach Level 12.</p></details>
<details class="description fulldesc">
<summary>Desc</summary>
<div class="description">
<p>Relics provide special powers available to all gods.</p>
</div>
</details>
</div>
</div>
<div class="item" data-id="23795" data-isactive="True">
<div class="item-desc">
<img class="icon" src="https://webcdn.hirezstudios.com/smite/item-icons/shard-relic.jpg" alt="Shard Relic">
<div class="name">Shard Relic</div>
<div class="price">π° Price: <i>none</i></div>
<div class="properties">
</div>
<details class="description shortdesc"><summary>ShortDesc</summary>Shard Relics provide special powers available to all gods</details>
<details class="description passive"><summary>Passive</summary><p>Shard Relics provide special powers available to all gods. Shard Relics are free and can be upgraded to a new Relic once you reach Level 12.</p></details>
<details class="description fulldesc">
<summary>Desc</summary>
<div class="description">
<p>Shard Relics provide special powers available to all gods.</p>
</div>
</details>
</div>
</div>
</div>
</details>
<details class="items-container" open>
<summary>Normal Items</summary>
<div class="items">
<div class="item-tree" style="display: grid; align-content: start;">
<div class="item-tree-node" style="grid-area: 1 / 1;">
<div class="item" data-id="11122" data-isactive="False">
<div class="item-desc">
<img class="icon" src="https://webcdn.hirezstudios.com/smite/item-icons/*bluestone-pendant.jpg" alt="*Bluestone Pendant">
<div class="name">*Bluestone Pendant</div>
<div class="price">π° Price: 800</div>
<div class="properties">
<span class="propkey propkey-mana" style="color: blue;" aria-label="Mana ">MP</span>
<span>+50</span>
<span class="propkey propkey-mp5" style="color: blue;" aria-label="MP5 ">MP5</span>
<span>+5</span>
<span class="propkey propkey-physicalpower" aria-label="Physical Power ">Phys Pwr</span>
<span>+15</span>
</div>
<details class="description shortdesc"><summary>ShortDesc</summary>Deal additional damage with abilities.</details>
<details class="description passive"><summary>Passive</summary><p>PASSIVE - Enemies hit by your damaging Abilities take an additional 30 Physical Damage over 2s. (Max 2 Stacks)</p></details>
</div>
</div>
</div>
</div>
<div class="item-tree" style="display: grid; align-content: start;">
<div class="item-tree-node" style="grid-area: 1 / 1;">
<div class="item" data-id="14089" data-isactive="False">
<div class="item-desc">
<img class="icon" src="https://webcdn.hirezstudios.com/smite/item-icons/*war-flag.jpg" alt="*War Flag">
<div class="name">*War Flag</div>
<div class="price">π° Price: 800</div>
<div class="properties">
<span class="propkey propkey-health" style="color: green;" aria-label="Health ">HP</span>
<span>+100</span>
<span class="propkey propkey-mp5" style="color: blue;" aria-label="MP5 ">MP5</span>
<span>+5 </span>
<span class="propkey propkey-physicalpower" aria-label="Physical Power ">Phys Pwr</span>
<span>+10</span>
</div>
<details class="description shortdesc"><summary>ShortDesc</summary>Starter item for physical gods playing as supports</details>
<details class="description passive"><summary>Passive</summary><p>PASSIVE - Being in range of minion or jungle camp death without dealing the killing the blow restores 5 Health and 5 Mana to all allies within 55 units and also provides allies with a stacking self buff of 1% Movement Speed and 1% Attack Speed. Lasts 6s and stacks up to 10 times. </p></details>
<details class="description fulldesc">
<summary>Desc</summary>
<div class="description">
<p>This starter item restores its user's Health and Mana when in assist range of a slain minion.</p>
</div>
</details>
</div>
</div>
</div>
</div>
<div class="item-tree" style="display: grid; align-content: start;">
<div class="item-tree-node" style="grid-area: 1 / 1;">
<div class="item" data-id="9828" data-isactive="True">
<div class="item-desc">
<img class="icon" src="https://webcdn.hirezstudios.com/smite/item-icons/ancient-blade.jpg" alt="Ancient Blade">
<div class="name">Ancient Blade</div>
<div class="price">π° Price: 550</div>
<div class="properties">
<span class="propkey propkey-health" style="color: green;" aria-label="Health ">HP</span>
<span>+50</span>
<span class="propkey propkey-movementspeed" aria-label="Movement Speed ">MvSpd</span>
<span>+5%</span>
</div>
<details class="description shortdesc"><summary>ShortDesc</summary>Health and Movement Speed</details>
</div>
</div>
</div>
<div class="item-tree-node" style="grid-area: 2 / 1;">
<div class="item" data-id="8239" data-isactive="True">
<div class="item-desc">
<img class="icon" src="https://webcdn.hirezstudios.com/smite/item-icons/adventurers-blade.jpg" alt="Adventurer's Blade">
<div class="name">Adventurer's Blade</div>
<div class="price">π° Price: 600</div>
<div class="properties">
<span class="propkey propkey-health" style="color: green;" aria-label="Health ">HP</span>
<span>+100</span>
<span class="propkey propkey-movementspeed" aria-label="Movement Speed ">MvSpd</span>
<span>+7%</span>
</div>
<details class="description shortdesc"><summary>ShortDesc</summary>Attack Speed and Movement Speed.</details>
</div>
</div>
</div>
<div class="item-tree-node" style="grid-area: 2 / 3;">
<div class="item" data-id="26234" data-isactive="True">
<div class="item-desc">
<img class="icon" src="https://webcdn.hirezstudios.com/smite/item-icons/fatalis.jpg" alt="Fatalis">
<div class="name">Fatalis</div>
<div class="price">π° Price: 850</div>
<div class="properties">
<span class="propkey propkey-health" style="color: green;" aria-label="Health ">HP</span>
<span>+75</span>
<span class="propkey propkey-movementspeed" aria-label="Movement Speed ">MvSpd</span>
<span>+5%</span>
<span class="propkey propkey-attackspeed" aria-label="Attack Speed ">AtkSpd</span>
<span>+10%</span>
<span class="propkey propkey-penetration" aria-label="Penetration ">Penetration</span>
<span>+5</span>
</div>
<details class="description shortdesc"><summary>ShortDesc</summary></details>
</div>
</div>
</div>
<div class="item-tree-node" style="grid-area: 2 / 4;">
<div class="item" data-id="18190" data-isactive="True">
<div class="item-desc">
<img class="icon" src="https://webcdn.hirezstudios.com/smite/item-icons/ritual-blade.jpg" alt="Ritual Blade">
<div class="name">Ritual Blade</div>
<div class="price">π° Price: 800</div>
<div class="properties">
<span class="propkey propkey-health" style="color: green;" aria-label="Health ">HP</span>
<span>+150</span>
<span class="propkey propkey-movementspeed" aria-label="Movement Speed ">MvSpd</span>
<span>+5%</span>
<span class="propkey propkey-cooldownreduction" aria-label="Cooldown Reduction ">CdRd</span>
<span>+10%</span>
</div>
<details class="description shortdesc"><summary>ShortDesc</summary>Movement Speed and Cooldown Reduction</details>
</div>
</div>
</div>
<div class="item-tree-node" style="grid-area: 3 / 1;">
<div class="item" data-id="24175" data-isactive="True">
<div class="item-desc">
<img class="icon" src="https://webcdn.hirezstudios.com/smite/item-icons/winged-blade.jpg" alt="Winged Blade">
<div class="name">Winged Blade</div>
<div class="price">π° Price: 700</div>
<div class="properties">
<span class="propkey propkey-health" style="color: green;" aria-label="Health ">HP</span>
<span>+200</span>
<span class="propkey propkey-movementspeed" aria-label="Movement Speed ">MvSpd</span>
<span>+7%</span>
<span class="propkey propkey-magicalprotection" aria-label="Magical Protection ">Mag Prot</span>
<span>+25</span>
<span class="propkey propkey-crowdcontrolreduction" aria-label="Crowd Control Reduction ">CrwdCtrlRd</span>
<span>+20%</span>
</div>
<details class="description shortdesc"><summary>ShortDesc</summary>Periodic immunity to Slow effects</details>
<details class="description passive"><summary>Passive</summary><p>PASSIVE - When hit by a Slow, you and nearby allies within 30 units become immune to Slows and gain 20% increased Movement Speed for 4s. This effect can only occur once every 30 seconds.</p></details>
<details class="description fulldesc">
<summary>Desc</summary>
<div class="description">
<p>This item makes the owner and allies immune to Slows when hit by one.</p>
</div>