-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathepicMagicItemsOther.html
3481 lines (3481 loc) · 148 KB
/
epicMagicItemsOther.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 PUBLIC "-//W3C//DTD XHTML 1.1//EN"
"http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta content="text/html; charset=windows-1250" http-equiv="content-type" />
<link rel="shortcut icon" href="favicon.ico" />
<title>
SRD - Epic Magic Items
</title>
<link rel="stylesheet" type="text/css" href="style.css" />
<script src="http://www.google-analytics.com/urchin.js" type="text/javascript">
</script>
<script type="text/javascript">
_uacct = "UA-239947-2";
urchinTracker();
</script>
</head>
<body>
<table border="0" cellpadding="0" cellspacing="0" style="width: 100%">
<tbody>
<tr>
<td style="width: 170px; text-align: right">
<img alt="d20 Logo" src="d20.jpg" />
</td>
<td style="width: 30px"></td>
<td colspan="3" id="title">
System Reference Document v3.5
</td>
<td rowspan="3" style="background-color: #8B2323; width: 15px"></td>
</tr>
<tr>
<td colspan="3" style="height: 15px"></td>
<td rowspan="2" style="width: 15px"></td>
</tr>
<tr valign="top">
<td>
<!-- left-hand navigation / menu -->
<table width="170px">
<tr><td style="width: 100%; background-color: #8b2323">
<div class="menu2">
<ul>
<li><a href="home.html">SRD Home</a>
<ul>
<li><a href="tips.html">Tips and Stuff</a></li>
<li><a href="siteMap.html">Site Map</a></li>
</ul>
</li>
<li><a href="legal.html">Legal Information</a></li>
<li><a href="tools.html">Tools</a>
<ul>
<li><a href="toolsScreen.html">DM Screen</a></li>
<li><a href="#" onclick="
var w = window.open('anchorSearch.html', 'anchor_search', 'scrollbars=yes,resizable=yes,toolbar=no,status=no,location=no,directories=no,width=900px,height=600px,screenX=10,screenY=20,top=20,left=10'); w.focus(); return false">
Site Search</a></li>
<li><a href="#" onclick="
var w = window.open('spellSearch.html', 'spell_search', 'scrollbars=yes,resizable=yes,toolbar=no,status=no,location=no,directories=no,width=900px,height=600px,screenX=10,screenY=20,top=20,left=10'); w.focus(); return false">
Spell Search</a></li>
<li><a href="#" onclick="
var w = window.open('powerSearch.html', 'power_search', 'scrollbars=yes,resizable=yes,toolbar=no,status=no,location=no,directories=no,width=900px,height=600px,screenX=10,screenY=20,top=20,left=10'); w.focus(); return false">
Power Search</a></li>
<li><a href="#" onclick="
var w = window.open('monsterSearch.html', 'monster_search', 'scrollbars=yes,resizable=yes,toolbar=no,status=no,location=no,directories=no,width=900px,height=600px,screenX=10,screenY=20,top=20,left=10'); w.focus(); return false">
Monster Search</a></li>
<li><a href="toolsSpellIndex.html">Spell Index</a></li>
<li><a href="toolsPowerIndex.html">Power Index</a></li>
<li><a href="toolsMonsterIndex.html">Monster Index</a></li>
<li><a href="toolsMagicItemIndex.html">Wondrous Item Index</a></li>
<li><a href="#" onclick="
var w = window.open('toolsDiceSage.html', 'dicesage', 'scrollbars=yes,resizable=yes,toolbar=no,status=no,location=no,directories=no,width=300px,height=500px,screenX=10,screenY=20,top=20,left=10'); w.focus(); return false">
DiceSage</a></li>
</ul>
</li>
<li><a href="basics.html">Basics & Ability Scores</a></li>
<li><a href="description.html">Alignment & Description</a></li>
<li><a href="races.html">Races</a></li>
<li><a href="classes.html">Character Classes</a>
<ul>
<li><a href="barbarian.html">Barbarian</a></li>
<li><a href="bard.html">Bard</a></li>
<li><a href="cleric.html">Cleric</a></li>
<li><a href="druid.html">Druid</a></li>
<li><a href="fighter.html">Fighter</a></li>
<li><a href="monk.html">Monk</a></li>
<li><a href="paladin.html">Paladin</a></li>
<li><a href="ranger.html">Ranger</a></li>
<li><a href="rogue.html">Rogue</a></li>
<li><a href="sorcerer.html">Sorcerer</a></li>
<li><a href="wizard.html">Wizard</a></li>
</ul>
</li>
<li><a href="skills.html">Skills</a>
<ul>
<li><a href="skillsAll.html">In Alphabetical Order</a></li>
<li><a href="skillsStr.html">Strength-Based</a></li>
<li><a href="skillsDex.html">Dexterity-Based</a></li>
<li><a href="skillsCon.html">Constitution-Based</a></li>
<li><a href="skillsInt.html">Intelligence-Based</a></li>
<li><a href="skillsWis.html">Wisdom-Based</a></li>
<li><a href="skillsCha.html">Charisma-Based</a></li>
<li><a href="skillsTro.html">Trained Only</a></li>
<li><a href="skillsAcp.html">With Armor Check Penalty</a></li>
</ul>
</li>
<li><a href="feats.html">Feats</a>
<ul>
<li><a href="featsAll.html">In Alphabetical Order</a></li>
<li><a href="featsGen.html">General</a></li>
<li><a href="featsFtb.html">Fighter Bonus</a></li>
<li><a href="featsItc.html">Item Creation</a></li>
<li><a href="featsMtm.html">Metamagic</a></li>
<li><a href="featsList.html">Compiled</a></li>
</ul>
</li>
<li><a href="equipment.html">Equipment</a>
<ul>
<li><a href="weapons.html">Weapons</a></li>
<li><a href="armor.html">Armor</a></li>
<li><a href="goodsAndServices.html">Goods & Services</a></li>
</ul>
</li>
<li><a href="specialMaterials.html">Special Materials</a></li>
<li><a href="combat.html">Combat</a>
<ul>
<li><a href="initiativeAndAoO.html">Initiative & Attacks of Opportunity</a></li>
<li><a href="actionsInCombat.html">Actions In Combat</a></li>
<li><a href="injuryAndDeath.html">Injury & Death</a></li>
<li><a href="movement.html">Movement, Position, & Distance</a></li>
<li><a href="combatModifiers.html">Combat Modifiers</a></li>
<li><a href="specialAttacks.html">Special Attacks</a></li>
<li><a href="initiativeActions.html">Special Initiative Actions</a></li>
</ul>
</li>
<li><a href="abilitiesAndConditions.html">Special Abilities & Conditions</a></li>
<li><a href="npcClasses.html">NPC Classes</a></li>
<li><a href="prestigeClasses.html">Prestige Classes</a>
<ul>
<li><a href="arcaneArcher.html">Arcane Archer</a></li>
<li><a href="arcaneTrickster.html">Arcane Trickster</a></li>
<li><a href="archmage.html">Archmage</a></li>
<li><a href="assassin.html">Assassin</a></li>
<li><a href="blackguard.html">Blackguard</a></li>
<li><a href="dragonDisciple.html">Dragon Disciple</a></li>
<li><a href="duelist.html">Duelist</a></li>
<li><a href="dwarvenDefender.html">Dwarven Defender</a></li>
<li><a href="eldritchKnight.html">Eldritch Knight</a></li>
<li><a href="hierophant.html">Hierophant</a></li>
<li><a href="horizonWalker.html">Horizon Walker</a></li>
<li><a href="loremaster.html">Loremaster</a></li>
<li><a href="mysticTheurge.html">Mystic Theurge</a></li>
<li><a href="shadowdancer.html">Shadowdancer</a></li>
<li><a href="thaumaturgist.html">Thaumaturgist</a></li>
</ul>
</li>
<li><a href="epicLevels.html">Epic Levels</a></li>
<li><a href="epicClasses.html"><div style="margin-left: 10px">Epic Classes</div></a></li>
<li><a href="epicSkills.html"><div style="margin-left: 10px">Epic Skills</div></a></li>
<li><a href="epicFeats.html"><div style="margin-left: 10px">Epic Feats</div></a></li>
<li><a href="epicPrestigeClasses.html"><div style="margin-left: 10px">Epic Prestige Classes</div></a>
<ul>
<li><a href="agentRetriever.html">Agent Retriever</a></li>
<li><a href="cosmicDescryer.html">Cosmic Descryer</a></li>
<li><a href="divineEmissary.html">Divine Emissary</a></li>
<li><a href="epicInfiltrator.html">Epic Infiltrator</a></li>
<li><a href="guardianParamount.html">Guardian Paramount</a></li>
<li><a href="highProselytizer.html">High Proselytizer</a></li>
<li><a href="legendaryDreadnought.html">Legendary Dreadnought</a></li>
<li><a href="perfectWight.html">Perfect Wight</a></li>
<li><a href="unionSentinel.html">Union Sentinel</a></li>
</ul>
</li>
<li><a href="epicSpells.html"><div style="margin-left: 10px">Epic Spells</div></a>
<ul>
<li><a href="epicSpellDevelopment.html">Developing</a></li>
</ul>
</li>
<li><a href="epicMagicItems.html"><div style="margin-left: 10px">Epic Magic Items</div></a></li>
<li class="selected"><a href="epicMagicItemsOther.html"><div style="margin-left: 20px">Other Items</div></a></li>
<li><a href="epicArtifacts.html"><div style="margin-left: 20px">Intelligent Items and Artifacts</div></a></li>
<li><a href="epicMonsters.html"><div style="margin-left: 10px">Epic Monsters</div></a>
<ul>
<li><a href="epicNonAbominations.html">Non-Abominations</a></li>
</ul>
</li>
<li><a href="epicObstacles.html"><div style="margin-left: 10px">Epic Obstacles</div></a></li>
<li><a href="magicOverview.html">Magic Overview</a>
<ul>
<li><a href="magicSchools.html">Schools of Magic</a></li>
<li><a href="arcaneSpells.html">Arcane Magic</a></li>
<li><a href="divineSpells.html">Divine Magic</a></li>
<li><a href="specialAbilities.html">Special Abilities</a></li>
</ul>
</li>
<li><a href="spellList.html">Spell List</a>
<ul>
<li><a href="#" onclick="var w = window.open('spellSearch.html', 'spell_search',
'scrollbars=yes,resizable=yes,toolbar=no,status=no,location=no,directories=no,width=900px,height=600px,screenX=10,screenY=20,top=20,left=10');
w.focus(); return false">Spell Search</a></li>
<li><a href="bardSpells.html">Bard Spells</a></li>
<li><a href="clericSpells.html">Cleric Spells</a></li>
<li><a href="clericDomains.html">Cleric Domains</a></li>
<li><a href="druidSpells.html">Druid Spells</a></li>
<li><a href="paladinSpells.html">Paladin Spells</a></li>
<li><a href="rangerSpells.html">Ranger Spells</a></li>
<li><a href="wizardSpells.html">Sorcerer/Wizard Spells</a></li>
<li><a href="spellsAtoZ.html">Spells A to Z</a>
<ul>
<li><a href="spellsAtoB.html">Acid Arrow — Burning Hands</a></li>
<li><a href="spellsC.html">Call Lightning — Curse Water</a></li>
<li><a href="spellsDtoE.html">Dancing Lights — Eyebite</a></li>
<li><a href="spellsFtoG.html">Fabricate — Gust of Wind</a></li>
<li><a href="spellsHtoL.html">Hallow — Lullaby</a></li>
<li><a href="spellsMtoO.html">Mage Armor — Owl's Wisdom</a></li>
<li><a href="spellsPtoR.html">Passwall — Rusting Grasp</a></li>
<li><a href="spellsS.html">Sanctuary — Sympathy</a></li>
<li><a href="spellsTtoZ.html">Telekinesis — Zone of Truth</a></li>
</ul>
</li>
</ul>
</li>
<li><a href="magicItems.html">Magic Items</a>
<ul>
<li><a href="magicItemsCreation.html">Creating Magic Items</a></li>
<li><a href="magicItemsAW.html#armor">Armor</a></li>
<li><a href="magicItemsPRR.html#potions">Potions</a></li>
<li><a href="magicItemsPRR.html#rings">Rings</a></li>
<li><a href="magicItemsPRR.html#rods">Rods</a></li>
<li><a href="magicItemsSSW.html#scrolls">Scrolls</a></li>
<li><a href="magicItemsSSW.html#staffs">Staffs</a></li>
<li><a href="magicItemsSSW.html#wands">Wands</a></li>
<li><a href="magicItemsAW.html#weapons">Weapons</a></li>
<li><a href="magicItemsWI.html">Wondrous Items</a></li>
<li><a href="magicItemsICA.html">Intelligent, Cursed, & Artifacts</a></li>
</ul>
</li>
<li><a href="monsters.html">Monsters</a>
<ul>
<li><a href="#" onclick="
var w = window.open('monsterSearch.html', 'monster_search', 'scrollbars=yes,resizable=yes,toolbar=no,status=no,location=no,directories=no,width=900px,height=600px,screenX=10,screenY=20,top=20,left=10'); w.focus(); return false">
Monster Search</a></li>
<li><a href="monstersAtoZ.html">Monsters A to Z</a>
<ul>
<li><a href="monstersA.html">Aboleth — Azer</a></li>
<li><a href="monstersBtoC.html">Barghest — Couatl</a></li>
<li><a href="monstersDtoDe.html">Dark Mantle — Devourer</a></li>
<li><a href="monstersDitoDo.html">Digester — Doppleganger</a></li>
<li><a href="monstersDrtoDw.html">Dragon — Dwarf</a></li>
<li><a href="monstersEtoF.html">Eagle — Fungus</a></li>
<li><a href="monstersG.html">Gargoyle — Grimlock</a></li>
<li><a href="monstersHtoI.html">Hag — Invisible Stalker</a></li>
<li><a href="monstersKtoL.html">Kobold — Lycanthrope</a></li>
<li><a href="monstersMtoN.html">Magmin — Nymph</a></li>
<li><a href="monstersOtoR.html">Ogre — Rust Monster</a></li>
<li><a href="monstersS.html">Sahuagin — Swarm</a></li>
<li><a href="monstersTtoZ.html">Tarrasque — Zombie</a></li>
</ul>
</li>
<li><a href="monstersAnimal.html">Animals</a></li>
<li><a href="monstersVermin.html">Vermin</a></li>
<li><a href="monsterTypes.html">Types, Subtypes, & Special Abilities</a></li>
<li><a href="improvingMonsters.html">Improving Monsters</a></li>
<li><a href="monsterFeats.html">Monster Feats</a></li>
<li><a href="monstersAsRaces.html">Monsters as Races</a></li>
</ul>
</li>
<li><a href="carryingAndExploration.html">Carrying, Movement, and Exploration</a></li>
<li><a href="treasure.html">Treasure</a></li>
<li><a href="wildernessAndEnvironment.html">Wilderness, Weather, and Environment</a></li>
<li><a href="traps.html">Traps</a></li>
<li><a href="planes.html">Planes</a></li>
<li><a href="psionic.html">Psionic</a>
<ul>
<li><a href="psionicRaces.html">Races</a></li>
<li><a href="psionicClasses.html">Classes</a>
<ul>
<li><a href="psionicPsion.html">Psion</a></li>
<li><a href="psionicPsychicWarrior.html">Psychic Warrior</a></li>
<li><a href="psionicSoulknife.html">Soulknife</a></li>
<li><a href="psionicWilder.html">Wilder</a></li>
</ul>
</li>
<li><a href="psionicSkills.html">Skills</a></li>
<li><a href="psionicFeats.html">Feats</a></li>
<li><a href="psionicPrestigeClasses.html">Prestige Classes</a>
<ul>
<li><a href="psionicCerebremancer.html">Cerebremancer</a></li>
<li><a href="psionicElocater.html">Elocater</a></li>
<li><a href="psionicFist.html">Psionic Fist</a></li>
<li><a href="psionicSlayer.html">Slayer</a></li>
<li><a href="psionicMetamind.html">Metamind</a></li>
<li><a href="psionicPsionUncarnate.html">Psion Uncarnate</a></li>
<li><a href="psionicPyrokineticist.html">Pyrokineticist</a></li>
<li><a href="psionicThrallherd.html">Thrallherd</a></li>
<li><a href="psionicWarMind.html">War Mind</a></li>
</ul>
</li>
<li><a href="psionicPowers.html">Powers</a>
<ul>
<li><a href="#" onclick="
var w = window.open('powerSearch.html', 'power_search',
'scrollbars=yes,resizable=yes,toolbar=no,status=no,location=no,directories=no,width=900px,height=600px,screenX=10,screenY=20,top=20,left=10');
w.focus(); return false">Power Search</a></li>
<li><a href="psionicDescriptions.html">Descriptions Format</a></li>
<li><a href="psionicPsionList.html">Psion/Wilder List</a></li>
<li><a href="psionicDisciplineList.html">Discipline List</a></li>
<li><a href="psionicWarriorList.html">Psychic Warrior List</a></li>
<li><a href="psionicPowersAtoC.html">Adapt Body — Crystallize</a></li>
<li><a href="psionicPowersDtoF.html">Danger Sense — Fusion</a></li>
<li><a href="psionicPowersGtoP.html">Genesis — Psychofeedback</a></li>
<li><a href="psionicPowersQtoW.html">Quintessence — Weapon of Energy</a></li>
</ul>
</li>
<li><a href="psionicItems.html">Psionic Items</a>
<ul>
<li><a href="psionicItemsAW.html">Armor & Weapons</a></li>
<li><a href="psionicItemsCCDT.html">Cognizance Crystals, Dorjes & Tatoos</a></li>
<li><a href="psionicItemsPSP.html">Power Stones & Psicrowns</a></li>
<li><a href="psionicItemsU.html">Universal Items</a></li>
<li><a href="psionicItemsCA.html">Cursed & Aritfacts</a></li>
</ul>
</li>
<li><a href="psionicMonsters.html">Monsters</a></li>
</ul>
</li>
<li><a href="divine.html">Divine</a>
<ul>
<li><a href="salientAbilities.html">Salient Divine Abilities</a></li>
<li><a href="divineFeats.html">Feats</a></li>
<li><a href="divineDomains.html">Domains</a></li>
<li><a href="divineNewSpells.html">Spells</a></li>
<li><a href="divineMinions.html">Minions</a></li>
</ul>
</li>
<li><a href="unearthedArcana.html">Unearthed Arcana</a>
<ul>
<li><a href="unearthedCharacter.html">Character</a>
<ul>
<li><a href="unearthedContacts.html">Contacts</a></li>
<li><a href="unearthedReputation.html">Reputation</a></li>
<li><a href="unearthedHonor.html">Honor</a></li>
<li><a href="unearthedTaint.html">Taint</a></li>
<li><a href="unearthedSanity.html">Sanity</a></li>
</ul>
</li>
<li><a href="unearthedRaces.html">Racial Variants</a>
<ul>
<li><a href="unearthedEnvironmentalVariants.html">Environmental Variants</a></li>
<li><a href="unearthedElementalVariants.html">Elemental Variants</a></li>
</ul>
</li>
<li><a href="unearthedBloodlines.html">Bloodlines</a></li>
<li><a href="unearthedClasses.html">Class Variants</a>
<ul>
<li><a href="unearthedCoreClass.html">Core Class Variants</a></li>
<li><a href="unearthedSpecialist.html">Specialist Wizard Variants</a></li>
<li><a href="unearthedGestalt.html">Gestalt Characters</a></li>
</ul>
</li>
<li><a href="unearthedNewClasses.html">New Classes</a>
<ul>
<li><a href="unearthedPrestige.html">Prestigious Classes</a></li>
<li><a href="unearthedParagon.html">Racial Paragon Classes</a></li>
</ul>
</li>
<li><a href="unearthedSkills.html">Skills Variants</a>
<ul>
<li><a href="unearthedAlternativeSkills.html">Alternative Skill Systems</a></li>
<li><a href="unearthedCraftPoints.html">Craft Points</a></li>
</ul>
</li>
<li><a href="unearthedFeats.html">Feats Variants</a>
<ul>
<li><a href="unearthedTraits.html">Traits</a></li>
<li><a href="unearthedFlaws.html">Flaws</a></li>
<li><a href="unearthedSpelltouchedFeats.html">Spelltouched Feats</a></li>
<li><a href="unearthedTests.html">Test-Based Prerequisites</a></li>
</ul>
</li>
<li><a href="unearthedCombat.html">Combat Variants</a>
<ul>
<li><a href="unearthedFacing.html">Facing and Hex Grids</a></li>
<li><a href="unearthedDefence.html">Defence and Armor</a></li>
<li><a href="unearthedInjury.html">Injury and Death</a></li>
<li><a href="unearthedRolls.html">Rolls and Modifiers</a></li>
</ul>
</li>
<li><a href="unearthedMagic.html">Magic</a>
<ul>
<li><a href="unearthedRecharge.html">Recharge Magic</a></li>
<li><a href="unearthedSpellPoints.html">Spell Points</a></li>
<li><a href="unearthedMetamagic.html">Metamagic Variants</a></li>
<li><a href="unearthedSummon.html">Summon Monster Variants</a></li>
<li><a href="unearthedIncantations.html">Incantations</a></li>
<li><a href="unearthedItems.html">Magic Items</a></li>
</ul>
</li>
</ul>
</li>
</ul>
</div>
</td><td></td></tr></table>
</td>
<td style="width: 30px"></td>
<td>
<!-- main contents -->
<a id="epic-magic-items"></a><h2>Epic Magic Items<br />
</h2>
<a id="epic-rings"></a><h3>RINGS<br />
</h3>
<table border="0" cellpadding="0" cellspacing="0" style="width: 100%">
<tbody>
<tr>
<td class="line"> </td>
</tr>
</tbody>
</table>
<a id="nonepic-magic-item"></a><h6>NONEPIC MAGIC ITEM </h6>
<a id="ring-of-universal-energy-resistance-minor"></a><span style="font-weight: bold;">Universal Energy Resistance,
Minor:</span> This ring functions as a ring of minor energy resistance
for all types of energy: fire, cold, electricity, acid, and sonic. When
the wearer would normally take such damage, subtract 10 points of
damage per round from the amount before applying. This is a nonepic
magic item. <br />
<span style="font-style: italic;">Caster Level:</span> 15th; <span
style="font-style: italic;">Prerequisites:</span> Forge Ring,
protection from energy; <span style="font-style: italic;">Market Price:</span>
84,000 gp.<br />
<br />
<a id="table-epic-rings"></a><table border="0" cellpadding="1" cellspacing="0" style="width: 500px">
<tbody>
<tr>
<th style="width: 15%">d%</th>
<th style="width: 35%">Ring</th>
<th style="width: 20%">Market Price</th>
</tr>
<tr class="odd-row">
<td>01-08</td>
<td>Universal energy resistance, greater<br />
</td>
<td>308,000 gp</td>
</tr>
<tr>
<td>09-13</td>
<td>Energy immunity (acid)</td>
<td>240,000 gp</td>
</tr>
<tr class="odd-row">
<td>14-15</td>
<td>Energy immunity (cold)</td>
<td>240,000 gp</td>
</tr>
<tr>
<td>19-23</td>
<td>Energy immunity (electricity)</td>
<td> 240,000 gp</td>
</tr>
<tr class="odd-row">
<td>24-28</td>
<td>Energy immunity (fire)</td>
<td>240,000 gp</td>
</tr>
<tr>
<td>29-33</td>
<td>Energy immunity (sonic)</td>
<td>240,000 gp</td>
</tr>
<tr class="odd-row">
<td>34-38</td>
<td>Adamant law</td>
<td>250,000 gp</td>
</tr>
<tr>
<td>39-43</td>
<td>Chaotic fury</td>
<td> 250,000 gp</td>
</tr>
<tr class="odd-row">
<td>44-48</td>
<td> Epic wizardry (V)</td>
<td>250,000 gp</td>
</tr>
<tr>
<td>49-53</td>
<td> Ineffable evil</td>
<td>250,000 gp</td>
</tr>
<tr class="odd-row">
<td>54-58</td>
<td>Virtuous good</td>
<td>250,000 gp</td>
</tr>
<tr>
<td>59-63</td>
<td>Rapid healing</td>
<td>300,000 gp</td>
</tr>
<tr class="odd-row">
<td>64-68</td>
<td> Sequestering</td>
<td>300,000 gp</td>
</tr>
<tr>
<td>69-72</td>
<td>Epic wizardry (VI) </td>
<td>360,000 gp </td>
</tr>
<tr class="odd-row">
<td>73-76</td>
<td> Ironskin </td>
<td> 400,000 gp</td>
</tr>
<tr>
<td>77-80</td>
<td> Epic wizardry (VII) <br />
</td>
<td> 490,000 gp</td>
</tr>
<tr class="odd-row">
<td>81-83</td>
<td>Weaponbreaking</td>
<td> 600,000 gp</td>
</tr>
<tr>
<td class="last-row">84-86</td>
<td class="last-row">Epic wizardry (VIII)</td>
<td class="last-row">640,000 gp</td>
</tr>
<tr>
<td
style="vertical-align: top; background-color: rgb(242, 228, 188);">87-89</td>
<td
style="vertical-align: top; background-color: rgb(242, 228, 188);">
Epic protection +6</td>
<td
style="vertical-align: top; background-color: rgb(242, 228, 188);">720,000
gp</td>
</tr>
<tr>
<td style="vertical-align: top;">90-92</td>
<td style="vertical-align: top;">Epic wizardry (IX) <br />
</td>
<td style="vertical-align: top;">810,000 gp </td>
</tr>
<tr>
<td
style="vertical-align: top; background-color: rgb(242, 228, 188);">93-95</td>
<td
style="vertical-align: top; background-color: rgb(242, 228, 188);">Epic
protection +7</td>
<td
style="vertical-align: top; background-color: rgb(242, 228, 188);">980,000
gp</td>
</tr>
<tr>
<td style="vertical-align: top;">96-97</td>
<td style="vertical-align: top;">Epic protection +8</td>
<td style="vertical-align: top;">1,280,000 gp</td>
</tr>
<tr>
<td
style="vertical-align: top; background-color: rgb(242, 228, 188);">98</td>
<td
style="vertical-align: top; background-color: rgb(242, 228, 188);">Epic
protection +9</td>
<td
style="vertical-align: top; background-color: rgb(242, 228, 188);">1,620,000
gp </td>
</tr>
<tr>
<td style="vertical-align: top;">99</td>
<td style="vertical-align: top;">Epic protection +10</td>
<td style="vertical-align: top;">2,000,000 gp</td>
</tr>
<tr>
<td
style="vertical-align: top; background-color: rgb(242, 228, 188);">100</td>
<td
style="vertical-align: top; background-color: rgb(242, 228, 188);">Universal
energy immunity</td>
<td
style="vertical-align: top; background-color: rgb(242, 228, 188);">2,160,000
gp<br />
</td>
</tr>
</tbody>
</table>
<a id="epic-ring-description"></a><h6>Epic Ring Descriptions </h6>
Standard epic rings are described below.<br />
<a id="ring-of-adamant-law"></a><p><span style="font-weight: bold;">Adamant Law:</span> The
wearer of this ring is constantly sheathed in a shield of law effect.
It bestows one negative level on any chaotic creature that puts it on.
The negative level remains as long as the ring is worn and disappears
when the ring is removed. This negative level never results in actual
level loss, but it cannot be overcome in any way (including restoration
spells) while the ring is worn.<br />
<span style="font-style: italic;">Caster Level:</span> 15th; <span
style="font-style: italic;">Prerequisites:</span> Forge Ring, Forge
Epic Ring, shield of law, creator must be lawful; <span
style="font-style: italic;">Market Price:</span> 250,000 gp. </p>
<a id="ring-of-chaotic-fury"></a><p><span style="font-weight: bold;">Chaotic Fury:</span> The
wearer of this ring is constantly sheathed in a cloak of chaos effect.
It bestows one negative level on any lawful creature that puts it on.
The negative level remains as long as the ring is worn and disappears
when the ring is removed. This negative level never results in actual
level loss, but it cannot be overcome in any way (including restoration
spells) while the ring is worn.<br />
<span style="font-style: italic;">Caster Level:</span> 15th; <span
style="font-style: italic;">Prerequisites:</span> Forge Ring, Forge
Epic Ring, cloak of chaos, creator must be chaotic; <span
style="font-style: italic;">Market Price:</span> 250,000 gp. </p>
<a id="ring-of-energy-immunity"></a><p><span style="font-weight: bold;">Energy Immunity:</span> This
band continually provides the wearer with immunity to a single type of
energy: fire, cold, electricity, acid, or sonic. The wearer takes no
damage from the energy of the specific type.<br />
<span style="font-style: italic;">Caster Level:</span> 20th; <span
style="font-style: italic;">Prerequisites:</span> Forge Ring, Forge
Epic Ring, protection from energy;<span style="font-style: italic;">
Market Price:</span> 240,000 gp. Epic </p>
<a id="ring-of-protection"></a><p><span style="font-weight: bold;">Protection:</span> This ring
offers continual magical protection in the form of a deflection bonus
to Armor Class of +6 or higher.<br />
<span style="font-style: italic;">Caster Level:</span> 20th: <span
style="font-style: italic;">Prerequisites:</span> Forge Ring, Forge
Epic Ring, shield of faith, creator’s caster level must be three times
the ring’s bonus; <span style="font-style: italic;">Market Price:</span>
720,000 gp (+6), 980,000 gp (+7), 1,280,000 gp (+8), 1,620,000 gp (+9),
2,000,000 gp (+10). </p>
<a id="ring-of-epic-wizardry"></a><p><span style="font-weight: bold;">Epic Wizardry:</span> Like
the ring of wizardry, this ring comes in a variety of types useful only
to arcane spellcasters. The wearer’s arcane spells per day are doubled
for one particular spell level. An epic ring of wizardry V doubles
5th-level spells, an epic ring of wizardry VI doubles 6th-level spells,
an epic ring of wizardry VII doubles 7th-level spells, an epic ring of
wizardry VIII doubles 8th-level spells, and an epic ring of wizardry IX
doubles 9th-level spells. Bonus spells from high ability scores, school
specialization, or any other source are not doubled.<br />
<span style="font-style: italic;">Caster Level:</span> 23rd (epic
wizardry V), 26th (epic wizardry VI), 29th (epic wizardry VII), 32nd
(epic wizardry VIII), 35th (epic wizardry IX); <span
style="font-style: italic;">Prerequisites:</span> Forge Ring, Forge
Epic Ring, wish; <span style="font-style: italic;">Market Price:</span>
250,000 gp (epic wizardry V), 360,000 gp (epic wizardry VI), 490,000 gp
(epic wizardry VII), 640,000 gp (epic wizardry VIII), 810,000 gp (epic
wizardry IX). </p>
<a id="ring-of-ineffable-evil"></a><p><span style="font-weight: bold;">Ineffable Evil:</span> The
wearer of this ring is constantly sheathed in an unholy aura effect. It
bestows one negative level on any good creature that puts it on. The
negative level remains as long as the ring is worn and disappears when
the ring is removed. This negative level never results in actual level
loss, but it cannot be overcome in any way (including restoration
spells) while the ring is worn.<br />
<span style="font-style: italic;">Caster Level:</span> 15th; <span
style="font-style: italic;">Prerequisites:</span> Forge Ring, Forge
Epic Ring, unholy aura, creator must be evil; <span
style="font-style: italic;">Market Price:</span> 250,000 gp. </p>
<a id="ring-of-ironskin"></a><p><span style="font-weight: bold;">Ironskin:</span> This ring
grants its wearer damage reduction 15/adamantine.<br />
<span style="font-style: italic;">Caster Level:</span> 20th; <span
style="font-style: italic;">Prerequisites:</span> Forge Ring, Forge
Epic Ring, iron body; <span style="font-style: italic;">Market Price:</span>
400,000 gp. </p>
<a id="ring-of-rapid-healing"></a><p><span style="font-weight: bold;">Rapid Healing:</span> This
ring grants a living wearer fast healing 3. It must be worn for 24
hours before its powers activate, and if removed it will not function
again until it has been worn for 24 hours by the same individual.<br />
<span style="font-style: italic;">Caster Level:</span> 20th; <span
style="font-style: italic;">Prerequisites:</span> Forge Ring, Forge
Epic Ring, regenerate; <span style="font-style: italic;">Market Price:</span>
300,000 gp. </p>
<a id="ring-of-sequestering"></a><p><span style="font-weight: bold;">Sequestering:</span> This
ring becomes invisible when worn. Upon command, the wearer gains the
benefits of a sequester spell (though he or she does not become
comatose as normal for the spell).<br />
<span style="font-style: italic;">Caster Level:</span> 20th; <span
style="font-style: italic;">Prerequisites:</span> Forge Ring, Forge
Epic Ring, sequester; <span style="font-style: italic;">Market Price:</span>
300,000 gp. </p>
<a id="ring-of-universal-energy-immunity"></a><p><span style="font-weight: bold;">Universal Energy Immunity:</span>
This ring functions as a ring of energy immunity for all types of
energy- fire, cold, electricity, acid, and sonic. The wearer takes no
damage from energy of any of these types.<br />
<span style="font-style: italic;">Caster Level:</span> 20th; <span
style="font-style: italic;">Prerequisites:</span> Forge Ring, Forge
Epic Ring, protection from energy; <span style="font-style: italic;">Market
Price:</span> 2,160,000 gp. </p>
<a id="ring-of-universal-energy-resistance-greater"></a><p><span style="font-weight: bold;">Universal Energy Resistance,
Greater:</span> This ring functions as a ring of greater energy
resistance for all types of energy-fire, cold, electricity, acid, and
sonic. When the wearer would normally take such damage, subtract 30
points of damage per round from the amount before applying.<br />
<span style="font-style: italic;">Caster Level:</span> 20th; <span
style="font-style: italic;">Prerequisites:</span> Forge Ring, Forge
Epic Ring, protection from energy; <span style="font-style: italic;">Market
Price:</span> 308,000 gp; <span style="font-style: italic;">Cost to
Create:</span> 154,000 gp + 13,080 XP. </p>
<a id="ring-of-virtuous-good"></a><p><span style="font-weight: bold;">Virtuous Good:</span> The
wearer of this ring is constantly sheathed in a holy aura effect. It
bestows one negative level on any evil creature that puts it on. The
negative level remains as long as the ring is worn and disappears when
the ring is removed. This negative level never results in actual level
loss, but it cannot be over-come in any way (including restoration
spells) while the ring is worn.<br />
<span style="font-style: italic;">Caster Level:</span> 15th; <span
style="font-style: italic;">Prerequisites:</span> Forge Ring, Forge
Epic Ring, holy aura, creator must be good; <span
style="font-style: italic;">Market Price:</span> 250,000 gp; <span
style="font-style: italic;">Cost to Create:</span> 125,000 gp + 12,500
XP. </p>
<a id="ring-of-weaponbreaking"></a><p><span style="font-weight: bold;">Weaponbreaking:</span> A ring
of weaponbreaking is identical to a ring of ironskin, and has one
additional power. Any weapon that successfully strikes the wearer must
also make a Fortitude saving throw (DC 20) or be shattered into pieces.<br />
<span style="font-style: italic;">Caster Level:</span> 20th; <span
style="font-style: italic;">Prerequisites:</span> Forge Ring, Forge
Epic Ring, iron body, shatter; <span style="font-style: italic;">Market
Price:</span> 600,000 gp; <span style="font-style: italic;">Cost to
Create:</span> 300,000 gp + 16,000 XP. </p>
<a id="ring-of-epic-psionics"></a><p><span style="font-weight: bold;">Epic Psionics:</span> This
special crystal ring comes in a variety of types useful only to psionic
characters (characters who have power points per day). The wearer’s
total power points per day are increased, depending on the ring. The
points granted are not bonus points-while the ring is worn, it actually
increases the wearer’s points per day, but a night’s rest is required
before gaining access to the increased power point per day total.
(Power points are not actually stored in the ring, as would be the case
for a crystal capacitor. Instead, the ring grants power points by
magnifying the manifester’s own power.)<br />
A ring of epic psionics V increases the wearer’s daily power points by
43 points, a ring of epic psionics VI grants 63 power points, a ring of
epic psionics VII grants 87 power points, a ring of epic psionics VIII
grants 115 points, and a ring of epic psionics IX grants 147 power
points.<br />
<span style="font-style: italic;">Manifester Level:</span> 23rd
(epic psionics V), 26th (epic psionics VI), 29th (epic psionics VII),
32nd (epic psionics VIII), 35th (epic psionics IX); <span
style="font-style: italic;">Prerequisites:</span> Craft Universal
Item, Craft Epic Universal Item, great emulation; <span
style="font-style: italic;">Market Price:</span> 250,000 gp (epic
psionics V), 360,000 gp (epic psionics VI), 490,000 gp (epic psionics
VII), 640,000 gp (epic psionics VIII), 810,000 gp (epic psionics IX). </p>
<a id="epic-rods"></a><h3>RODS<br />
</h3>
<a id="table-epic-rods"></a><table border="0" cellpadding="0" cellspacing="0" style="width: 100%">
<tbody>
<tr>
<td class="line"> </td>
</tr>
</tbody>
</table>
<br />
<table border="0" cellpadding="1" cellspacing="0" style="width: 500px">
<tbody>
<tr>
<th style="width: 15%">d%</th>
<th style="width: 35%">Rod</th>
<th style="width: 20%">Market Price</th>
</tr>
<tr class="odd-row">
<td>01-08</td>
<td>Epic spellcaster<br />
</td>
<td>245,000 gp</td>
</tr>
<tr>
<td>09-16</td>
<td>Nightmares</td>
<td>284,000 gp</td>
</tr>
<tr class="odd-row">
<td>17-24</td>
<td>Epic splendor</td>
<td>297,000 gp</td>
</tr>
<tr>
<td>25-31</td>
<td>The path</td>
<td>306,870 gp</td>
</tr>
<tr class="odd-row">
<td>32-38</td>
<td>Epic cancellation</td>
<td>330,000 gp</td>
</tr>
<tr>
<td>39-45</td>
<td>Epic negation</td>
<td>446,000 gp </td>
</tr>
<tr class="odd-row">
<td>46-51</td>
<td>Besiegement</td>
<td>447,745 gp</td>
</tr>
<tr>
<td>52-57</td>
<td>Fortification</td>
<td>465,665 gp</td>
</tr>
<tr class="odd-row">
<td>58-63</td>
<td>Epic rulership</td>
<td>575,000 gp</td>
</tr>
<tr>
<td>64-69</td>
<td>Invulnerability</td>
<td>600,000 gp <br />
</td>
</tr>
<tr class="odd-row">
<td>70-75</td>
<td>Paradise</td>
<td>610,000 gp </td>
</tr>
<tr>
<td>76-80</td>
<td>Restless death</td>
<td>625,000 gp</td>
</tr>
<tr class="odd-row">
<td>81-85 <br />
</td>
<td>Excellent magic</td>
<td>650,000 gp <br />
</td>
</tr>
<tr>
<td>86</td>
<td>Wyrm (white)</td>
<td>1,458,200 gp</td>
</tr>
<tr class="odd-row">
<td>87</td>
<td>Wyrm (brass)</td>
<td>1,458,200 gp</td>
</tr>
<tr>
<td>88-90</td>
<td>Epic absorption</td>
<td>1,500,000 gp</td>
</tr>
<tr class="odd-row">
<td>91<br />
</td>
<td>Wyrm (copper)</td>
<td>1,562,600 gp</td>
</tr>
<tr>
<td class="last-row">92<br />
</td>
<td class="last-row">Wyrm (black)</td>
<td class="last-row">1,562,600 gp</td>
</tr>
<tr>
<td
style="vertical-align: top; background-color: rgb(242, 228, 188);">93<br />
</td>
<td
style="vertical-align: top; background-color: rgb(242, 228, 188);">Wyrm
(bronze)</td>
<td
style="vertical-align: top; background-color: rgb(242, 228, 188);">1,670,600
gp</td>
</tr>
<tr>
<td style="vertical-align: top;">94<br />
</td>
<td style="vertical-align: top;">Wyrm (green)</td>
<td style="vertical-align: top;">1,670,600 gp</td>
</tr>
<tr>
<td
style="vertical-align: top; background-color: rgb(242, 228, 188);">95<br />
</td>
<td
style="vertical-align: top; background-color: rgb(242, 228, 188);">Wyrm
(blue)</td>
<td
style="vertical-align: top; background-color: rgb(242, 228, 188);">1,782,200
gp</td>
</tr>
<tr>
<td style="vertical-align: top;">96<br />
</td>
<td style="vertical-align: top;">Wyrm (silver)</td>
<td style="vertical-align: top;">1,782,200 gp</td>
</tr>
<tr>
<td
style="vertical-align: top; background-color: rgb(242, 228, 188);">97<br />
</td>
<td
style="vertical-align: top; background-color: rgb(242, 228, 188);">Wyrm
(gold)</td>
<td
style="vertical-align: top; background-color: rgb(242, 228, 188);">1,897,400
g9</td>
</tr>
<tr>
<td style="vertical-align: top;">98<br />
</td>
<td style="vertical-align: top;">Wyrm (red)</td>
<td style="vertical-align: top;"> 1,897,400 gp</td>
</tr>
<tr>
<td
style="vertical-align: top; background-color: rgb(242, 228, 188);">99-100<br />
</td>
<td
style="vertical-align: top; background-color: rgb(242, 228, 188);">Epic
might</td>
<td
style="vertical-align: top; background-color: rgb(242, 228, 188);">4,293,432
gp</td>
</tr>
</tbody>
</table>
<br />
<a id="epic-rod-descriptions"></a><h6>EPIC ROD DESCRIPTIONS </h6>
Standard epic rods are described below. <br />
<br />
<a id="rod-of-besiegement"></a><p><span style="font-weight: bold;">Besiegement: </span>
This rod functions as a +3 light mace. In addition, it is useful for
besieging fortifications. Whenever the wielder makes a charge attack,
the rod improves to a +6 weapon. Twice per day, the rod can create a
battering ram that lasts for 24 rounds. This ram can strike once per
round, dealing 20 points of damage with each hit. It cannot be used to
target individuals, only fortifications. It can be damaged by normal
means (65 hp, AC 22), and disintegrate or dispel magic destroys it. The
rod also has the following powers: Siege Engine: One heavy catapult,
two light catapults, or three siege towers may be generated with each
use of this power. Each weapon created lasts for 12 hours. The
power can be used three times per day. Ammunition for 20 shots is
included with each weapon created.<br />
<span style="font-style: italic;">Transmute Rock to Mud:</span>
This power can be used three times per day (caster level 24th, save DC
17).<br />
<span style="font-style: italic;">Caster Level:</span> 24th; <span
style="font-style: italic;">Prerequisites:</span> Craft Rod, Craft
Epic Rod, Craft Magic Arms and Armor, clenched fist, passwall,
telepathic bond, transmute rock to mud; <span
style="font-style: italic;">Market Price:</span> 447,745 gp; <span
style="font-style: italic;">Cost to Create:</span> 224,025 gp + 14,474
XP. </p>
<a id="rod-of-epic-absorption"></a><p><span style="font-weight: bold;">Epic Absorption:</span> Like
a rod of absorption, this rod draws single-target or ray spells and
spell-like abilities into itself, nullifying the effect and storing the
potential spell levels until the wielder releases the energy in the
form of spells of his or her own. Spells of any level (including those
boosted beyond 9th level by metamagic) can be absorbed, although epic
spells cannot. The rod absorbs a maximum of 150 spell levels and can
thereafter only discharge any remaining potential it might have. The
rod cannot be recharged.<br />
<span style="font-style: italic;">Caster Level:</span> 23rd; <span
style="font-style: italic;">Prerequisites:</span> Craft Rod, Craft
Epic Rod, Empower Spell, Maximize Spell, empowered maximized spell
turning; <span style="font-style: italic;">Market Price:</span>
1,500,000 gp. </p>
<a id="rod-of-epic-cancellation"></a><p><span style="font-weight: bold;">Epic Cancellation:</span>
This rod’s touch drains an item of all magical properties, including
the magical energy in epic magic items (but not most artifacts). The
item touched gets a Will saving throw (DC 26). If a creature is holding
the magic item at the time, then the item can use the holder’s Will
save bonus in place of its own. In such cases, contact is established
by making a melee touch attack roll. Upon draining three items, the rod
becomes brittle and useless. Drained items can only be restored by
wish, miracle, or epic spells specifically designed to restore lost
power. A rod of epic cancellation can neutralize a normal sphere of
annihilation without itself being cancelled.<br />
<span style="font-style: italic;">Caster Level:</span> 25th; <span
style="font-style: italic;">Prerequisites:</span> Craft Rod, Craft
Epic Rod, dispel magic; <span style="font-style: italic;">Market Price:</span>
330,000 gp. </p>
<a id="rod-of-epic-might"></a><p><span style="font-weight: bold;">Epic Might:</span> This rod
is similar to a rod of lordly might, although it is far more powerful.
It is larger than its normal counterpart, and it is constructed of
adamantine rather than normal metal. It has six buttons, several
spell-like functions, and several mundane uses, and it can also be used
as a magic weapon of various sorts.<br />
The following spell-like functions of the rod can each be used once per
day.<br />
</p>
<p><br />
</p>
<ul>
<li>Dominate Person: Touched foe is recipient of a dominate
person spell,
if the wielder so commands (Will save DC 24). The wielder must choose
to use this power and then succeed with a melee touch attack to
activate the power. If the attack fails, the effect is lost.</li>
<li>Stun: Upon command, all enemies viewing the rod are
stunned, as per the
power word, stun spell (10-foot maximum range, Will save DC 24).
Invoking this power is a standard action.</li>
<li>Damage: Upon command, the rod deals 10d8 points of damage
to an
opponent on a successful touch attack and cures the wielder of a like
amount of damage (Will save DC 26). The wielder must choose to use this
power before attacking, as with dominate person.</li>
</ul>
<br />