-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathspells.tex
9794 lines (7949 loc) · 735 KB
/
spells.tex
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
\section{Spells}
\begin{multicols}{2}
\begin{small}
\featname{Acid Arrow}
\shortability{Conjuration}{(Creation) [Acid]}
\shortability{Level:}{Sor/Wiz 2}
\shortability{Components:}{V, S, M, F}
\shortability{Casting Time:}{1 standard action}
\shortability{Range:}{Long (400 ft. + 40 ft./level)}
\shortability{Effect:}{One arrow of acid}
\shortability{Duration:}{1 round + 1 round per three levels}
\shortability{Saving Throw:}{None}
\shortability{Spell Resistance:}{No}
\noindent A magical arrow of acid springs from your hand and speeds to its target. You must succeed on a ranged touch attack to hit your target. The arrow deals 2d4 points of acid damage with no splash damage. For every three caster levels (to a maximum of 18th), the acid, unless somehow neutralized, lasts for another round, dealing another 2d4 points of damage in that round.
\shortability{Material Component:}{Powdered rhubarb leaf and an adder's stomach.}
\shortability{Focus:}{A dart.}
\featname{Acid Fog}
\shortability{Conjuration}{(Creation) [Acid]}
\shortability{Level:}{Sor/Wiz 6, Water 7}
\shortability{Components:}{V, S, M/DF}
\shortability{Casting Time:}{1 standard action}
\shortability{Range:}{Medium (100 ft. + 10 ft./level)}
\shortability{Effect:}{Fog spreads in 20-ft. radius, 20 ft. high}
\shortability{Duration:}{1 round/level}
\shortability{Saving Throw:}{None}
\shortability{Spell Resistance:}{No}
\noindent Acid fog creates a billowing mass of misty vapors similar to that produced by a solid fog spell. In addition to slowing creatures down and obscuring sight, this spell's vapors are highly acidic. Each round on your turn, starting when you cast the spell, the fog deals 2d6 points of acid damage to each creature and object within it.
\shortability{Arcane Material Component:}{A pinch of dried, powdered peas combined with powdered animal hoof.}
\featname{Acid Splash}
\shortability{Conjuration}{(Creation) [Acid]}
\shortability{Level:}{Sor/Wiz 0}
\shortability{Components:}{V, S}
\shortability{Casting Time:}{1 standard action}
\shortability{Range:}{Close (25 ft. + 5 ft./2 levels)}
\shortability{Effect:}{One missile of acid}
\shortability{Duration:}{Instantaneous}
\shortability{Saving Throw:}{None}
\shortability{Spell Resistance:}{No}
\noindent You fire a small orb of acid at the target. You must succeed on a ranged touch attack to hit your target. The orb deals 1d3 points of acid damage.
\featname{Aid}
\shortability{Enchantment}{(Compulsion) [Mind-Affecting]}
\shortability{Level:}{Clr 2, Good 2, Luck 2}
\shortability{Components:}{V, S, DF}
\shortability{Casting Time:}{1 standard action}
\shortability{Range:}{Touch}
\shortability{Target:}{Living creature touched}
\shortability{Duration:}{1 min./level}
\shortability{Saving Throw:}{None}
\shortability{Spell Resistance:}{Yes (harmless)}
\noindent Aid grants the target a +1 morale bonus on attack rolls and saves against fear effects, plus temporary hit points equal to 1d8 + caster level (to a maximum of 1d8+10 temporary hit points at caster level 10th).
\featname{Air Walk}
\shortability{Transmutation}{[Air]}
\shortability{Level:}{Air 4, Clr 4, Drd 4}
\shortability{Components:}{V, S, DF}
\shortability{Casting Time:}{1 standard action}
\shortability{Range:}{Touch}
\shortability{Target:}{Creature (Gargantuan or smaller) touched}
\shortability{Duration:}{10 min./level}
\shortability{Saving Throw:}{None}
\shortability{Spell Resistance:}{Yes (harmless)}
\noindent The subject can tread on air as if walking on solid ground. Moving upward is similar to walking up a hill. The maximum upward or downward angle possible is 45 degrees, at a rate equal to one-half the air walker's normal speed.
\smallskip\noindent A strong wind (21+ mph) can push the subject along or hold it back. At the end of its turn each round, the wind blows the air walker 5 feet for each 5 miles per hour of wind speed. The creature may be subject to additional penalties in exceptionally strong or turbulent winds, such as loss of control over movement or physical damage from being buffeted about.
\smallskip\noindent Should the spell duration expire while the subject is still aloft, the magic fails slowly. The subject floats downward 60 feet per round for 1d6 rounds. If it reaches the ground in that amount of time, it lands safely. If not, it falls the rest of the distance, taking 1d6 points of damage per 10 feet of fall. Since dispelling a spell effectively ends it, the subject also descends in this way if the air walk spell is dispelled, but not if it is negated by an antimagic field.
\smallskip\noindent You can cast air walk on a specially trained mount so it can be ridden through the air. You can train a mount to move with the aid of air walk (counts as a trick; see Handle Animal skill) with one week of work and a DC 25 Handle Animal check.
\featname{Alarm}
\shortability{Abjuration}{}
\shortability{Level:}{Brd 1, Rgr 1, Sor/Wiz 1}
\shortability{Components:}{V, S, F/DF}
\shortability{Casting Time:}{1 standard action}
\shortability{Range:}{Close (25 ft. + 5 ft./2 levels)}
\shortability{Area:}{20-ft.-radius emanation centered on a point in space}
\shortability{Duration:}{2 hours/level (D)}
\shortability{Saving Throw:}{None}
\shortability{Spell Resistance:}{No}
\noindent Alarm sounds a mental or audible alarm each time a creature of Tiny or larger size enters the warded area or touches it. A creature that speaks the password (determined by you at the time of casting) does not set off the alarm. You decide at the time of casting whether the alarm will be mental or audible.
\shortability{Mental Alarm:}{A mental alarm alerts you (and only you) so long as you remain within 1 mile of the warded area. You note a single mental "ping" that awakens you from normal sleep but does not otherwise disturb concentration. A silence spell has no effect on a mental alarm.}
\shortability{Audible Alarm:}{An audible alarm produces the sound of a hand bell, and anyone within 60 feet of the warded area can hear it clearly. Reduce the distance by 10 feet for each interposing closed door and by 20 feet for each substantial interposing wall.}
\smallskip\noindent In quiet conditions, the ringing can be heard faintly as far as 180 feet away. The sound lasts for 1 round. Creatures within a silence spell cannot hear the ringing.
\smallskip\noindent Ethereal or astral creatures do not trigger the alarm.
\smallskip\noindent Alarm can be made permanent with a permanency spell.
\shortability{Arcane Focus:}{A tiny bell and a piece of very fine silver wire}
\featname{Align Weapon}
\shortability{Transmutation}{[see text]}
\shortability{Level:}{Clr 2}
\shortability{Components:}{V, S, DF}
\shortability{Casting Time:}{1 standard action}
\shortability{Range:}{Touch}
\shortability{Target:}{Weapon touched or fifty projectiles (all of which must be in contact with each other at the time of casting)}
\shortability{Duration:}{1 min./level}
\shortability{Saving Throw:}{Will negates (harmless, object)}
\shortability{Spell Resistance:}{Yes (harmless, object)}
\noindent Align weapon makes a weapon good, evil, lawful, or chaotic, as you choose. A weapon that is aligned can bypass the damage reduction of certain creatures. This spell has no effect on a weapon that already has an alignment.
\smallskip\noindent You can't cast this spell on a natural weapon, such as an unarmed strike.
\smallskip\noindent When you make a weapon good, evil, lawful, or chaotic, align weapon is a good, evil, lawful, or chaotic spell, respectively.
\featname{Alter Self}
\shortability{Transmutation}{}
\shortability{Level:}{Brd 2, Sor/Wiz 2}
\shortability{Components:}{V, S}
\shortability{Casting Time:}{1 standard action}
\shortability{Range:}{Personal}
\shortability{Target:}{You}
\shortability{Duration:}{10 min./level (D)}
\noindent You assume the form of a creature of the same type as your normal form. The new form must be within one size category of your normal size. The maximum HD of an assumed form is equal to your caster level, to a maximum of 5 HD at 5th level. You can change into a member of your own kind or even into yourself.
\smallskip\noindent You retain your own ability scores. Your class and level, hit points, alignment, base attack bonus, and base save bonuses all remain the same. You retain all supernatural and spell-like special attacks and qualities of your normal form, except for those requiring a body part that the new form does not have (such as a mouth for a breath weapon or eyes for a gaze attack).
\smallskip\noindent You keep all extraordinary special attacks and qualities derived from class levels, but you lose any from your normal form that are not derived from class levels.
\smallskip\noindent If the new form is capable of speech, you can communicate normally. You retain any spellcasting ability you had in your original form, but the new form must be able to speak intelligibly (that is, speak a language) to use verbal components and must have limbs capable of fine manipulation to use somatic or material components.
\smallskip\noindent You acquire the physical qualities of the new form while retaining your own mind. Physical qualities include natural size, mundane movement capabilities (such as burrowing, climbing, walking, swimming, and flight with wings, to a maximum speed of 120 feet for flying or 60 feet for nonflying movement), natural armor bonus, natural weapons (such as claws, bite, and so on), racial skill bonuses, racial bonus feats, and any gross physical qualities (presence or absence of wings, number of extremities, and so forth). A body with extra limbs does not allow you to make more attacks (or more advantageous two-weapon attacks) than normal.
\smallskip\noindent You do not gain any extraordinary special attacks or special qualities not noted above under physical qualities, such as darkvision, low-light vision, blindsense, blindsight, fast healing, regeneration, scent, and so forth.
\smallskip\noindent You do not gain any supernatural special attacks, special qualities, or spell-like abilities of the new form. Your creature type and subtype (if any) remain the same regardless of your new form. You cannot take the form of any creature with a template, even if that template doesn't change the creature type or subtype.
\smallskip\noindent You can freely designate the new form's minor physical qualities (such as hair color, hair texture, and skin color) within the normal ranges for a creature of that kind. The new form's significant physical qualities (such as height, weight, and gender) are also under your control, but they must fall within the norms for the new form's kind. You are effectively disguised as an average member of the new form's race. If you use this spell to create a disguise, you get a +10 bonus on your Disguise check.
\smallskip\noindent When the change occurs, your equipment, if any, either remains worn or held by the new form (if it is capable of wearing or holding the item), or melds into the new form and becomes nonfunctional. When you revert to your true form, any objects previously melded into the new form reappear in the same location on your body they previously occupied and are once again functional. Any new items you wore in the assumed form and can't wear in your normal form fall off and land at your feet; any that you could wear in either form or carry in a body part common to both forms at the time of reversion are still held in the same way. Any part of the body or piece of equipment that is separated from the whole reverts to its true form.
\featname{Analyze Dweomer}
\shortability{Divination}{}
\shortability{Level:}{Brd 6, Sor/Wiz 6}
\shortability{Components:}{V, S, F}
\shortability{Casting Time:}{1 standard action}
\shortability{Range:}{Close (25 ft. + 5 ft./2 levels)}
\shortability{Targets:}{One object or creature per caster level}
\shortability{Duration:}{1 round/level (D)}
\shortability{Saving Throw:}{None or Will negates; see text}
\shortability{Spell Resistance:}{No}
\noindent You discern all spells and magical properties present in a number of creatures or objects. Each round, you may examine a single creature or object that you can see as a free action. In the case of a magic item, you learn its functions, how to activate its functions (if appropriate), and how many charges are left (if it uses charges). In the case of an object or creature with active spells cast upon it, you learn each spell, its effect, and its caster level.
\smallskip\noindent An attended object may attempt a Will save to resist this effect if its holder so desires. If the save succeeds, you learn nothing about the object except what you can discern by looking at it. An object that makes its save cannot be affected by any other analyze dweomer spells for 24 hours.
Analyze dweomer does not function when used on an artifact.
\shortability{Focus:}{A tiny lens of ruby or sapphire set in a small golden loop. The gemstone must be worth at least 1,500 gp.}
\featname{Animal Growth}
\shortability{Transmutation}{}
\shortability{Level:}{Drd 5, Rgr 4, Sor/Wiz 5}
\shortability{Components:}{V, S}
\shortability{Casting Time:}{1 standard action}
\shortability{Range:}{Medium (100 ft. + 10 ft./level)}
\shortability{Targets:}{Up to one animal (Gargantuan or smaller) per two levels, no two of which can be more than 30 ft. apart}
\shortability{Duration:}{1 min./level}
\shortability{Saving Throw:}{Fortitude negates}
\shortability{Spell Resistance:}{Yes}
\noindent A number of animals grow to twice their normal size and eight times their normal weight. This alteration changes each animal's size category to the next largest, grants it a +8 size bonus to Strength and a +4 size bonus to Constitution (and thus an extra 2 hit points per HD), and imposes a -2 size penalty to Dexterity. The creature's existing natural armor bonus increases by 2. The size change also affects the animal's modifier to AC and attack rolls and its base damage. The animal's space and reach change as appropriate to the new size, but its speed does not change.
\smallskip\noindent The spell also grants each subject damage reduction 10/magic and a +4 resistance bonus on saving throws. If insufficient room is available for the desired growth, the creature attains the maximum possible size and may make a Strength check (using its increased Strength) to burst any enclosures in the process. If it fails, it is constrained without harm by the materials enclosing it- the spell cannot be used to crush a creature by increasing its size.
\smallskip\noindent All equipment worn or carried by an animal is similarly enlarged by the spell, though this change has no effect on the magical properties of any such equipment.
Any enlarged item that leaves the enlarged creature's possession instantly returns to its normal size.
\smallskip\noindent
The spell gives no means of command or influence over the enlarged animals.
\smallskip\noindent Multiple magical effects that increase size do not stack.
\featname{Animal Messenger}
\shortability{Enchantment}{(Compulsion) [Mind-Affecting]}
\shortability{Level:}{Brd 2, Drd 2, Rgr 1}
\shortability{Components:}{V, S, M}
\shortability{Casting Time:}{1 standard action}
\shortability{Range:}{Close (25 ft. + 5 ft./2 levels)}
\shortability{Target:}{One Tiny animal}
\shortability{Duration:}{One day/level}
\shortability{Saving Throw:}{None; see text}
\shortability{Spell Resistance:}{Yes}
\noindent You compel a Tiny animal to go to a spot you designate. The most common use for this spell is to get an animal to carry a message to your allies. The animal cannot be one tamed or trained by someone else, including such creatures as familiars and animal companions.
\smallskip\noindent Using some type of food desirable to the animal as a lure, you call the animal to you. It advances and awaits your bidding. You can mentally impress on the animal a certain place well known to you or an obvious landmark. The directions must be simple, because the animal depends on your knowledge and can't find a destination on its own. You can attach some small item or note to the messenger. The animal then goes to the designated location and waits there until the duration of the spell expires, whereupon it resumes its normal activities.
\smallskip\noindent During this period of waiting, the messenger allows others to approach it and remove any scroll or token it carries. The intended recipient gains no special ability to communicate with the animal or read any attached message (if it's written in a language he or she doesn't know, for example).
\shortability{Material Component:}{A morsel of food the animal likes.}
\featname{Animal Shapes}
\shortability{Transmutation}{}
\shortability{Level:}{Animal 7, Drd 8}
\shortability{Components:}{V, S, DF}
\shortability{Casting Time:}{1 standard action}
\shortability{Range:}{Close (25 ft. + 5 ft./2 levels)}
\shortability{Targets:}{Up to one willing creature per level, all within 30 ft. of each other}
\shortability{Duration:}{1 hour/level (D)}
\shortability{Saving Throw:}{None; see text}
\shortability{Spell Resistance:}{Yes (harmless)}
\noindent As polymorph, except you polymorph up to one willing creature per caster level into an animal of your choice; the spell has no effect on unwilling creatures. All creatures must take the same kind of animal form. Recipients remain in the animal form until the spell expires or until you dismiss it for all recipients. In addition, an individual subject may choose to resume its normal form as a full-round action; doing so ends the spell for that subject alone. The maximum HD of an assumed form is equal to the subject's HD or your caster level, whichever is lower, to a maximum of 20 HD at 20th level.
\featname{Animal Trance}
\shortability{Enchantment}{(Compulsion) [Mind-Affecting, Sonic]}
\shortability{Level:}{Brd 2, Drd 2}
\shortability{Components:}{V, S}
\shortability{Casting Time:}{1 standard action}
\shortability{Range:}{Close (25 ft. + 5 ft./2 levels)}
\shortability{Targets:}{Animals or magical beasts with Intelligence 1 or 2}
\shortability{Duration:}{Concentration}
\shortability{Saving Throw:}{Will negates; see text}
\shortability{Spell Resistance:}{Yes}
\noindent Your swaying motions and music (or singing, or chanting) compel animals and magical beasts to do nothing but watch you. Only a creature with an Intelligence score of 1 or 2 can be fascinated by this spell. Roll 2d6 to determine the total number of HD worth of creatures that you fascinate. The closest targets are selected first until no more targets within range can be affected.
\smallskip\noindent A magical beast, a dire animal, or an animal trained to attack or guard is allowed a saving throw; an animal not trained to attack or guard is not.
\featname{Animate Dead}
\shortability{Necromancy}{[Evil]}
\shortability{Level:}{Clr 3, Death 3, Sor/Wiz 4}
\shortability{Components:}{V, S, M}
\shortability{Casting Time:}{1 standard action}
\shortability{Range:}{Touch}
\shortability{Targets:}{One or more corpses touched}
\shortability{Duration:}{Instantaneous}
\shortability{Saving Throw:}{None}
\shortability{Spell Resistance:}{No}
\noindent This spell turns the bones or bodies of dead creatures into undead skeletons or zombies that follow your spoken commands.
\smallskip\noindent The undead can follow you, or they can remain in an area and attack any creature (or just a specific kind of creature) entering the place. They remain animated until they are destroyed. (A destroyed skeleton or zombie can't be animated again.)
\smallskip\noindent Regardless of the type of undead you create with this spell, you can't create more HD of undead than twice your caster level with a single casting of animate dead. (The desecrate spell doubles this limit)
\smallskip\noindent The undead you create remain under your control indefinitely. No matter how many times you use this spell, however, you can control only 4 HD worth of undead creatures per caster level. If you exceed this number, all the newly created creatures fall under your control, and any excess undead from previous castings become uncontrolled. (You choose which creatures are released.) If you are a cleric, any undead you might command by virtue of your power to command or rebuke undead do not count toward the limit.
\shortability{Skeletons:}{A skeleton can be created only from a mostly intact corpse or skeleton. The corpse must have bones. If a skeleton is made from a corpse, the flesh falls off the bones.}
\shortability{Zombies:}{A zombie can be created only from a mostly intact corpse. The corpse must be that of a creature with a true anatomy.}
\shortability{Material Component:}{You must place a black onyx gem worth at least 25 gp per Hit Die of the undead into the mouth or eye socket of each corpse you intend to animate. The magic of the spell turns these gems into worthless, burned-out shells.}
\featname{Animate Objects}
\shortability{Transmutation}{}
\shortability{Level:}{Brd 6, Chaos 6, Clr 6}
\shortability{Components:}{V, S}
\shortability{Casting Time:}{1 standard action}
\shortability{Range:}{Medium (100 ft. + 10 ft./level)}
\shortability{Targets:}{One Small object per caster level; see text}
\shortability{Duration:}{1 round/level}
\shortability{Saving Throw:}{None}
\shortability{Spell Resistance:}{No}
\noindent You imbue inanimate objects with mobility and a semblance of life. Each such animated object then immediately attacks whomever or whatever you initially designate.
\smallskip\noindent An animated object can be of any nonmagical material. You may animate one Small or smaller object or an equivalent number of larger objects per caster level. A Medium object counts as two Small or smaller objects, a Large object as four, a Huge object as eight, a Gargantuan object as sixteen, and a Colossal object as thirty-two. You can change the designated target or targets as a move action, as if directing an active spell.
\smallskip\noindent This spell cannot animate objects carried or worn by a creature.
\smallskip\noindent Animate objects can be made permanent with a permanency spell.
\featname{Animate Plants}
\shortability{Transmutation}{}
\shortability{Level:}{Drd 7, Plant 7}
\shortability{Components:}{V}
\shortability{Casting Time:}{1 standard action}
\shortability{Range:}{Close (25 ft. + 5 ft./2 levels)}
\shortability{Targets:}{One Large plant per three caster levels or all plants within range; see text}
\shortability{Duration:}{1 round/level or 1 hour/level; see text}
\shortability{Saving Throw:}{None}
\shortability{Spell Resistance:}{No}
\smallskip\noindent You imbue inanimate plants with mobility and a semblance of life. Each animated plant then immediately attacks whomever or whatever you initially designate as though it were an animated object of the appropriate size category. You may animate one Large or smaller plant, or an equivalent number of larger plants, per three caster levels. A Huge plant counts as two Large or smaller plants, a Gargantuan plant as four, and a Colossal plant as eight. You can change the designated target or targets as a move action, as if directing an active spell.
\smallskip\noindent Use the statistics for animated objects, except that plants smaller than Large usually don't have hardness.
\smallskip\noindent Animate plants cannot affect plant creatures, nor does it affect nonliving vegetable material.
\shortability{Entangle:}{Alternatively, you may imbue all plants within range with a degree of mobility, which allows them to entwine around creatures in the area. This usage of the spell duplicates the effect of an entangle spell. Spell resistance does not keep creatures from being entangled. This effect lasts 1 hour per caster level.}
\featname{Animate Rope}
\shortability{Transmutation}{}
\shortability{Level:}{Brd 1, Sor/Wiz 1}
\shortability{Components:}{V, S}
\shortability{Casting Time:}{1 standard action}
\shortability{Range:}{Medium (100 ft. + 10 ft./level)}
\shortability{Target:}{One ropelike object, length up to 50 ft. + 5 ft./level; see text}
\shortability{Duration:}{1 round/level}
\shortability{Saving Throw:}{None}
\shortability{Spell Resistance:}{No}
\noindent You can animate a nonliving ropelike object. The maximum length assumes a rope with a 1-inch diameter.
\smallskip\noindent Reduce the maximum length by 50\% for every additional inch of thickness, and increase it by 50\% for each reduction of the rope's diameter by half.
The possible commands are "coil" (form a neat, coiled stack), "coil and knot," "loop," "loop and knot," "tie and knot," and the opposites of all of the above ("uncoil," and so forth). You can give one command each round as a move action, as if directing an active spell.
\smallskip\noindent The rope can enwrap only a creature or an object within 1 foot of it-it does not snake outward-so it must be thrown near the intended target. Doing so requires a successful ranged touch attack roll (range increment 10 feet). A typical 1- inch-diameter hempen rope has 2 hit points, AC 10, and requires a DC 23 Strength check to burst it. The rope does not deal damage, but it can be used as a trip line or to cause a single opponent that fails a Reflex saving throw to become entangled. A creature capable of spellcasting that is bound by this spell must make a DC 15 Concentration check to cast a spell. An entangled creature can slip free with a DC 20 Escape Artist check.
\smallskip\noindent The rope itself and any knots tied in it are not magical.
\smallskip\noindent This spell grants a +2 bonus on any Use Rope checks you make when using the transmuted rope.
\smallskip\noindent The spell cannot animate objects carried or worn by a creature.
\featname{Antilife Shell}
\shortability{Abjuration}{}
\shortability{Level:}{Animal 6, Clr 6, Drd 6}
\shortability{Components:}{V, S, DF}
\shortability{Casting Time:}{1 round}
\shortability{Range:}{10 ft.}
\shortability{Area:}{10-ft.-radius emanation, centered on you}
\shortability{Duration:}{10 min./level (D)}
\shortability{Saving Throw:}{None}
\shortability{Spell Resistance:}{Yes}
\noindent You bring into being a mobile, hemispherical energy field that prevents the entrance of most types of living creatures.
\smallskip\noindent The effect hedges out animals, aberrations, dragons, fey, giants, humanoids, magical beasts, monstrous humanoids, oozes, plants, and vermin, but not constructs, elementals, outsiders, or undead.
\smallskip\noindent This spell may be used only defensively, not aggressively. Forcing an abjuration barrier against creatures that the spell keeps at bay collapses the barrier.
\featname{Antimagic Field}
\shortability{Abjuration}{}
\shortability{Level:}{Clr 8, Magic 6, Protection 6, Sor/Wiz 6}
\shortability{Components:}{V, S, M/DF}
\shortability{Casting Time:}{1 standard action}
\shortability{Range:}{10 ft.}
\shortability{Area:}{10-ft.-radius emanation, centered on you}
\shortability{Duration:}{10 min./level (D)}
\shortability{Saving Throw:}{None}
\shortability{Spell Resistance:}{See text}
\noindent An invisible barrier surrounds you and moves with you. The space within this barrier is impervious to most magical effects, including spells, spell-like abilities, and supernatural abilities. Likewise, it prevents the functioning of any magic items or spells within its confines.
\smallskip\noindent An antimagic field suppresses any spell or magical effect used within, brought into, or cast into the area, but does not dispel it. Time spent within an antimagic field counts against the suppressed spell's duration.
\smallskip\noindent Summoned creatures of any type and incorporeal undead wink out if they enter an antimagic field. They reappear in the same spot once the field goes away. Time spent winked out counts normally against the duration of the conjuration that is maintaining the creature. If you cast antimagic field in an area occupied by a summoned creature that has spell resistance, you must make a caster level check (1d20 + caster level) against the creature's spell resistance to make it wink out. (The effects of instantaneous conjurations are not affected by an antimagic field because the conjuration itself is no longer in effect, only its result.)
\smallskip\noindent A normal creature can enter the area, as can normal missiles. Furthermore, while a magic sword does not function magically within the area, it is still a sword (and a masterwork sword at that). The spell has no effect on golems and other constructs that are imbued with magic during their creation process and are thereafter self-supporting (unless they have been summoned, in which case they are treated like any other summoned creatures). Elementals, corporeal undead, and outsiders are likewise unaffected unless summoned. These creatures' spell-like or supernatural abilities, however, may be temporarily nullified by the field. Dispel magic does not remove the field.
\smallskip\noindent Two or more antimagic fields sharing any of the same space have no effect on each other. Certain spells, such as wall of force, prismatic sphere, and prismatic wall, remain unaffected by antimagic field (see the individual spell descriptions). Artifacts and deities are unaffected by mortal magic such as this.
\smallskip\noindent Should a creature be larger than the area enclosed by the barrier, any part of it that lies outside the barrier is unaffected by the field.
\shortability{Arcane Material Component:}{A pinch of powdered iron or iron filings.}
\featname{Antipathy}
\shortability{Enchantment}{(Compulsion) [Mind-Affecting]}
\shortability{Level:}{Drd 9, Sor/Wiz 8}
\shortability{Components:}{V, S, M/DF}
\shortability{Casting Time:}{1 hour}
\shortability{Range:}{Close (25 ft. + 5 ft./2 levels)}
\shortability{Target:}{One location (up to a 10-ft. cube/level) or one object}
\shortability{Duration:}{2 hours/level (D)}
\shortability{Saving Throw:}{Will partial}
\shortability{Spell Resistance:}{Yes}
\noindent You cause an object or location to emanate magical vibrations that repel either a specific kind of intelligent creature or creatures of a particular alignment, as defined by you. The kind of creature to be affected must be named specifically. A creature subtype is not specific enough. Likewise, the specific alignment to be repelled must be named.
\smallskip\noindent Creatures of the designated kind or alignment feel an overpowering urge to leave the area or to avoid the affected item.
A compulsion forces them to abandon the area or item, shunning it and never willingly returning to it while the spell is in effect. A creature that makes a successful saving throw can stay in the area or touch the item but feels uncomfortable doing so. This distracting discomfort reduces the creature's Dexterity score by 4 points.
Antipathy counters and dispels sympathy.
\shortability{Arcane Material Component:}{A lump of alum soaked in vinegar.}
\featname{Antiplant Shell}
\shortability{Abjuration}{}
\shortability{Level:}{Drd 4}
\shortability{Components:}{V, S, DF}
\shortability{Casting Time:}{1 standard action}
\shortability{Range:}{10 ft.}
\shortability{Area:}{10-ft.-radius emanation, centered on you}
\shortability{Duration:}{10 min./level (D)}
\shortability{Saving Throw:}{None}
\shortability{Spell Resistance:}{Yes}
\noindent The antiplant shell spell creates an invisible, mobile barrier that keeps all creatures within the shell protected from attacks by plant creatures or animated plants. As with many abjuration spells, forcing the barrier against creatures that the spell keeps at bay strains and collapses the field.
\featname{Arcane Eye}
\shortability{Divination}{(Scrying)}
\shortability{Level:}{Sor/Wiz 4}
\shortability{Components:}{V, S, M}
\shortability{Casting Time:}{10 minutes}
\shortability{Range:}{Unlimited}
\shortability{Effect:}{Magical sensor}
\shortability{Duration:}{1 min./level (D)}
\shortability{Saving Throw:}{None}
\shortability{Spell Resistance:}{No}
\noindent You create an invisible magical sensor that sends you visual information. You can create the arcane eye at any point you can see, but it can then travel outside your line of sight without hindrance. An arcane eye travels at 30 feet per round (300 feet per minute) if viewing an area ahead as a human would (primarily looking at the floor) or 10 feet per round (100 feet per minute) if examining the ceiling and walls as well as the floor ahead. It sees exactly as you would see if you were there.
\smallskip\noindent The eye can travel in any direction as long as the spell lasts. Solid barriers block its passage, but it can pass through a hole or space as small as 1 inch in diameter. The eye can't enter another plane of existence, even through a gate or similar magical portal.
\smallskip\noindent You must concentrate to use an arcane eye. If you do not concentrate, the eye is inert until you again concentrate.
\shortability{Material Component:}{A bit of bat fur.}
\featname{Arcane Lock}
\shortability{Abjuration}{}
\shortability{Level:}{Sor/Wiz 2}
\shortability{Components:}{V, S, M}
\shortability{Casting Time:}{1 standard action}
\shortability{Range:}{Touch}
\shortability{Target:}{The door, chest, or portal touched, up to 30 sq. ft./level in size}
\shortability{Duration:}{Permanent}
\shortability{Saving Throw:}{None}
\shortability{Spell Resistance:}{No}
\noindent An arcane lock spell cast upon a door, chest, or portal magically locks it. You can freely pass your own arcane lock without affecting it; otherwise, a door or object secured with this spell can be opened only by breaking in or with a successful dispel magic or knock spell. Add 10 to the normal DC to break open a door or portal affected by this spell. (A knock spell does not remove an arcane lock; it only suppresses the effect for 10 minutes.)
\shortability{Material Component:}{Gold dust worth 25 gp.}
\featname{Arcane Mark}
\shortability{Universal}{}
\shortability{Level:}{Sor/Wiz 0}
\shortability{Components:}{V, S}
\shortability{Casting Time:}{1 standard action}
\shortability{Range:}{0 ft.}
\shortability{Effect:}{One personal rune or mark, all of which must fit within 1 sq. ft.}
\shortability{Duration:}{Permanent}
\shortability{Saving Throw:}{None}
\shortability{Spell Resistance:}{No}
\noindent This spell allows you to inscribe your personal rune or mark, which can consist of no more than six characters. The writing can be visible or invisible. An arcane mark spell enables you to etch the rune upon any substance without harm to the material upon which it is placed. If an invisible mark is made, a detect magic spell causes it to glow and be visible, though not necessarily understandable.
\smallskip\noindent See invisibility, true seeing, a gem of seeing, or a robe of eyes likewise allows the user to see an invisible arcane mark. A read magic spell reveals the words, if any. The mark cannot be dispelled, but it can be removed by the caster or by an erase spell.
\smallskip\noindent If an arcane mark is placed on a living being, normal wear gradually causes the effect to fade in about a month.
Arcane mark must be cast on an object prior to casting instant summons on the same object (see that spell description for details).
\featname{Arcane Sight}
\shortability{Divination}{}
\shortability{Level:}{Sor/Wiz 3}
\shortability{Components:}{V, S}
\shortability{Casting Time:}{1 standard action}
\shortability{Range:}{Personal}
\shortability{Target:}{You}
\shortability{Duration:}{1 min./level (D)}
\noindent This spell makes your eyes glow blue and allows you to see magical auras within 120 feet of you. The effect is similar to that of a detect magic spell, but arcane sight does not require concentration and discerns aura location and power more quickly.
\smallskip\noindent You know the location and power of all magical auras within your sight. An aura's power depends on a spell's functioning level or an item's caster level, as noted in the description of the detect magic spell. If the items or creatures bearing the auras are in line of sight, you can make Spellcraft skill checks to determine the school of magic involved in each. (Make one check per aura; DC 15 + spell level, or 15 + one-half caster level for a nonspell effect.)
\smallskip\noindent If you concentrate on a specific creature within 120 feet of you as a standard action, you can determine whether it has any spellcasting or spell-like abilities, whether these are arcane or divine (spell-like abilities register as arcane), and the strength of the most powerful spell or spell-like ability the creature currently has available for use.
\smallskip\noindent Arcane sight can be made permanent with a permanency spell.
\featname{Arcane Sight, Greater}
\shortability{Divination}{}
\shortability{Level:}{Sor/Wiz 7}
\noindent This spell functions like arcane sight, except that you automatically know which spells or magical effects are active upon any individual or object you see.
Greater arcane sight doesn't let you identify magic items.
\smallskip\noindent Unlike arcane sight, this spell cannot be made permanent with a permanency spell.
\featname{Astral Projection}
\shortability{Necromancy}{}
\shortability{Level:}{Clr 9, Sor/Wiz 9, Travel 9}
\shortability{Components:}{V, S, M}
\shortability{Casting Time:}{30 minutes}
\shortability{Range:}{Touch}
\shortability{Targets:}{You plus one additional willing creature touched per two caster levels}
\shortability{Duration:}{See text}
\shortability{Saving Throw:}{None}
\shortability{Spell Resistance:}{Yes}
\noindent By freeing your spirit from your physical body, this spell allows you to project an astral body onto another plane altogether.
\smallskip\noindent You can bring the astral forms of other willing creatures with you, provided that these subjects are linked in a circle with you at the time of the casting. These fellow travelers are dependent upon you and must accompany you at all times. If something happens to you during the journey, your companions are stranded wherever you left them.
\smallskip\noindent You project your astral self onto the Astral Plane, leaving your physical body behind on the Material Plane in a state of suspended animation. The spell projects an astral copy of you and all you wear or carry onto the Astral Plane. Since the Astral Plane touches upon other planes, you can travel astrally to any of these other planes as you will. To enter one, you leave the Astral Plane, forming a new physical body (and equipment) on the plane of existence you have chosen to enter.
\smallskip\noindent While you are on the Astral Plane, your astral body is connected at all times to your physical body by a silvery cord. If the cord is broken, you are killed, astrally and physically. Luckily, very few things can destroy a silver cord. When a second body is formed on a different plane, the incorporeal silvery cord remains invisibly attached to the new body. If the second body or the astral form is slain, the cord simply returns to your body where it rests on the Material Plane, thereby reviving it from its state of suspended animation. Although astral projections are able to function on the Astral Plane, their actions affect only creatures existing on the Astral Plane; a physical body must be materialized on other planes.
\smallskip\noindent You and your companions may travel through the Astral Plane indefinitely. Your bodies simply wait behind in a state of suspended animation until you choose to return your spirits to them. The spell lasts until you desire to end it, or until it is terminated by some outside means, such as dispel magic cast upon either the physical body or the astral form, the breaking of the silver cord, or the destruction of your body back on the Material Plane (which kills you).
\shortability{Material Component:}{A jacinth worth at least 1,000 gp, plus a silver bar worth 5 gp for each person to be affected.}
\featname{Atonement}
\shortability{Abjuration}{}
\shortability{Level:}{Clr 5, Drd 5}
\shortability{Components:}{V, S, M, F, DF, XP}
\shortability{Casting Time:}{1 hour}
\shortability{Range:}{Touch}
\shortability{Target:}{Living creature touched}
\shortability{Duration:}{Instantaneous}
\shortability{Saving Throw:}{None}
\shortability{Spell Resistance:}{Yes}
\noindent This spell removes the burden of evil acts or misdeeds from the subject. The creature seeking atonement must be truly repentant and desirous of setting right its misdeeds. If the atoning creature committed the evil act unwittingly or under some form of compulsion, atonement operates normally at no cost to you. However, in the case of a creature atoning for deliberate misdeeds and acts of a knowing and willful nature, you must intercede with your deity (requiring you to expend 500 XP) in order to expunge the subject's burden. Many casters first assign a subject of this sort a quest (see geas/quest) or similar penance to determine whether the creature is truly contrite before casting the atonement spell on its behalf.
\smallskip\noindent Atonement may be cast for one of several purposes, depending on the version selected.
\shortability{Reverse Magical Alignment Change:}{If a creature has had its alignment magically changed, atonement returns its alignment to its original status at no cost in experience points.}
\shortability{Restore Class:}{A paladin who has lost her class features due to committing an evil act may have her paladinhood restored to her by this spell.}
\shortability{Restore Cleric or Druid Spell Powers:}{A cleric or druid who has lost the ability to cast spells by incurring the anger of his or her deity may regain that ability by seeking atonement from another cleric of the same deity or another druid. If the transgression was intentional, the casting cleric loses 500 XP for his intercession. If the transgression was unintentional, he does not lose XP.}
\shortability{Redemption or Temptation:}{You may cast this spell upon a creature of an opposing alignment in order to offer it a chance to change its alignment to match yours. The prospective subject must be present for the entire casting process. Upon completion of the spell, the subject freely chooses whether it retains its original alignment or acquiesces to your offer and changes to your alignment. No duress, compulsion, or magical influence can force the subject to take advantage of the opportunity offered if it is unwilling to abandon its old alignment. This use of the spell does not work on outsiders or any creature incapable of changing its alignment naturally.
\smallskip\noindent Though the spell description refers to evil acts, atonement can also be used on any creature that has performed acts against its alignment, whether those acts are evil, good, chaotic, or lawful.}
\shortability{Note:}{Normally, changing alignment is up to the player. This use of atonement simply offers a believable way for a character to change his or her alignment drastically, suddenly, and definitively.}
\shortability{Material Component:}{Burning incense.}
\shortability{Focus:}{In addition to your holy symbol or normal divine focus, you need a set of prayer beads (or other prayer device, such as a prayer wheel or prayer book) worth at least 500 gp.}
\shortability{XP Cost:}{When cast for the benefit of a creature whose guilt was the result of deliberate acts, the cost to you is 500 XP per casting (see above).}
\featname{Augury}
\shortability{Divination}{}
\shortability{Level:}{Clr 2}
\shortability{Components:}{V, S, M, F}
\shortability{Casting Time:}{1 minute}
\shortability{Range:}{Personal}
\shortability{Target:}{You}
\shortability{Duration:}{Instantaneous}
\noindent An augury can tell you whether a particular action will bring good or bad results for you in the immediate future.
\smallskip\noindent The base chance for receiving a meaningful reply is 70\% + 1\% per caster level, to a maximum of 90\%; this roll is made secretly. A question may be so straightforward that a successful result is automatic, or so vague as to have no chance of success. If the augury succeeds, you get one of four results:
\listone
\item Weal (if the action will probably bring good results).
\item Woe (for bad results).
\item Weal and woe (for both).
\item Nothing (for actions that don't have especially good or bad results).
\end{list}
\smallskip\noindent If the spell fails, you get the "nothing" result. A cleric who gets the "nothing" result has no way to tell whether it was the consequence of a failed or successful augury.
\smallskip\noindent The augury can see into the future only about half an hour, so anything that might happen after that does not affect the result. Thus, the result might not take into account the long-term consequences of a contemplated action. All auguries cast by the same person about the same topic use the same dice result as the first casting.
\shortability{Material Component:}{Incense worth at least 25 gp.}
\shortability{Focus:}{A set of marked sticks, bones, or similar tokens of at least 25 gp value.}
\featname{Awaken}
\shortability{Transmutation}{}
\shortability{Level:}{Drd 5}
\shortability{Components:}{V, S, DF, XP}
\shortability{Casting Time:}{24 hours}
\shortability{Range:}{Touch}
\shortability{Target:}{Animal or tree touched}
\shortability{Duration:}{Instantaneous}
\shortability{Saving Throw:}{Will negates}
\shortability{Spell Resistance:}{Yes}
\noindent You awaken a tree or animal to humanlike sentience. To succeed, you must make a Will save (DC 10 + the animal's current HD, or the HD the tree will have once awakened).
\smallskip\noindent The awakened animal or tree is friendly toward you. You have no special empathy or connection with a creature you awaken, although it serves you in specific tasks or endeavors if you communicate your desires to it.
\smallskip\noindent An awakened tree has characteristics as if it were an animated object, except that it gains the plant type and its Intelligence, Wisdom, and Charisma scores are each 3d6. An awakened plant gains the ability to move its limbs, roots, vines, creepers, and so forth, and it has senses similar to a human's. An awakened animal gets 3d6 Intelligence, +1d3 Charisma, and +2 HD. Its type becomes magical beast (augmented animal). An awakened animal can't serve as an animal companion, familiar, or special mount. An awakened tree or animal can speak one language that you know, plus one additional language that you know per point of Intelligence bonus (if any).
\shortability{XP Cost:}{250 XP.}
\featname{Baleful Polymorph}
\shortability{Transmutation}{}
\shortability{Level:}{Drd 5, Sor/Wiz 5}
\shortability{Components:}{V, S}
\shortability{Casting Time:}{1 standard action}
\shortability{Range:}{Close (25 ft. + 5 ft./2 levels)}
\shortability{Target:}{One creature}
\shortability{Duration:}{Permanent}
\shortability{Saving Throw:}{Fortitude negates, Will partial; see text}
\shortability{Spell Resistance:}{Yes}
\noindent As polymorph, except that you change the subject into a Small or smaller animal of no more than 1 HD. If the new form would prove fatal to the creature the subject gets a +4 bonus on the save.
\smallskip\noindent If the spell succeeds, the subject must also make a Will save. If this second save fails, the creature loses its extraordinary, supernatural, and spell-like abilities, loses its ability to cast spells (if it had the ability), and gains the alignment, special abilities, and Intelligence, Wisdom, and Charisma scores of its new form in place of its own. It still retains its class and level (or HD), as well as all benefits deriving therefrom (such as base attack bonus, base save bonuses, and hit points). It retains any class features (other than spellcasting) that aren't extraordinary, supernatural, or spell-like abilities.
\smallskip\noindent Incorporeal or gaseous creatures are immune to being polymorphed, and a creature with the shapechanger subtype can revert to its natural form as a standard action.
\featname{Bane}
\shortability{Enchantment}{(Compulsion) [Fear, Mind-Affecting]}
\shortability{Level:}{Clr 1}
\shortability{Components:}{V, S, DF}
\shortability{Casting Time:}{1 standard action}
\shortability{Range:}{50 ft.}
\shortability{Area:}{All enemies within 50 ft.}
\shortability{Duration:}{1 min./level}
\shortability{Saving Throw}{Will negates}
\shortability{Spell Resistance:}{Yes}
\noindent Bane fills your enemies with fear and doubt. Each affected creature takes a -1 penalty on attack rolls and a -1 penalty on saving throws against fear effects. Bane counters and dispels bless.
\featname{Banishment}
\shortability{Abjuration}{}
\shortability{Level:}{Clr 6, Sor/Wiz 7}
\shortability{Components:}{V, S, F}
\shortability{Casting Time:}{1 standard action}
\shortability{Range:}{Close (25 ft. + 5 ft./2 levels)}
\shortability{Targets:}{One or more extraplanar creatures, no two of which can be more than 30 ft. apart}
\shortability{Duration:}{Instantaneous}
\shortability{Saving Throw:}{Will negates}
\shortability{Spell Resistance:}{Yes}
\noindent A banishment spell is a more powerful version of the dismissal spell. It enables you to force extraplanar creatures out of your home plane. As many as 2 Hit Dice of creatures per caster level can be banished.
\smallskip\noindent You can improve the spell's chance of success by presenting at least one object or substance that the target hates, fears, or otherwise opposes. For each such object or substance, you gain a +1 bonus on your caster level check to overcome the target's spell resistance (if any), the saving throw DC increases by 2.
\smallskip\noindent Certain rare items might work twice as well as a normal item for the purpose of the bonuses (each providing a +2 bonus on the caster level check against spell resistance and increasing the save DC by 4).
\shortability{Arcane Focus:}{Any item that is distasteful to the subject (optional, see above).}
\featname{Barkskin}
\shortability{Transmutation}{}
\shortability{Level:}{Drd 2, Rgr 2, Plant 2}
\shortability{Components:}{V, S, DF}
\shortability{Casting Time:}{1 standard action}
\shortability{Range:}{Touch}
\shortability{Target:}{Living creature touched}
\shortability{Duration:}{10 min./level}
\shortability{Saving Throw:}{None}
\shortability{Spell Resistance:}{Yes (harmless)}
\noindent Barkskin toughens a creature's skin. The effect grants a +2 enhancement bonus to the creature's existing natural armor bonus. This enhancement bonus increases by 1 for every three caster levels above 3rd, to a maximum of +5 at caster level 12th.
\smallskip\noindent The enhancement bonus provided by barkskin stacks with the target's natural armor bonus, but not with other enhancement bonuses to natural armor. A creature without natural armor has an effective natural armor bonus of +0.
\featname{Bear's Endurance}
\shortability{Transmutation}{}
\shortability{Level:}{Clr 2, Drd 2, Rgr 2, Sor/Wiz 2}
\shortability{Components:}{V, S, DF}
\shortability{Casting Time:}{1 standard action}
\shortability{Range:}{Touch}
\shortability{Target:}{Creature touched}
\shortability{Duration:}{1 min./level}
\shortability{Saving Throw}{Will negates (harmless)}
\shortability{Spell Resistance:}{Yes}
\noindent The affected creature gains greater vitality and stamina. The spell grants the subject a +4 enhancement bonus to Constitution, which adds the usual benefits to hit points, Fortitude saves, Constitution checks, and so forth.
\smallskip\noindent Hit points gained by a temporary increase in Constitution score are not temporary hit points. They go away when the subject's Constitution drops back to normal. They are not lost first as temporary hit points are.
\featname{Bear's Endurance, Mass}
\shortability{Transmutation}{}
\shortability{Level:}{Clr 6, Drd 6, Sor/Wiz 6}
\shortability{Range:}{Close (25 ft. + 5 ft./2 levels)}
\shortability{Targets:}{One creature/level, no two of which can be more than 30 ft. apart}
\noindent Mass bear's endurance works like bear 's endurance, except that it affects multiple creatures.
\featname{Bestow Curse}
\shortability{Necromancy}{}
\shortability{Level:}{Clr 3, Sor/Wiz 4}
\shortability{Components:}{V, S}
\shortability{Casting Time:}{1 standard action}
\shortability{Range:}{Touch}
\shortability{Target:}{Creature touched}
\shortability{Duration:}{Permanent}
\shortability{Saving Throw:}{Will negates}
\shortability{Spell Resistance:}{Yes}
\noindent You place a curse on the subject. Choose one of the following three effects.
\listone
\item -6 decrease to an ability score (minimum 1).
\item -4 penalty on attack rolls, saves, ability checks, and skill checks.
\item Each turn, the target has a 50\% chance to act normally; otherwise, it takes no action.
\end{list}
\smallskip\noindent You may also invent your own curse, but it should be no more powerful than those described above. The curse bestowed by this spell cannot be dispelled, but it can be removed with a break enchantment, limited wish, miracle, remove curse, or wish spell.
\smallskip\noindent Bestow curse counters remove curse.
\featname{Binding}
\shortability{Enchantment}{(Compulsion) [Mind-Affecting]}
\shortability{Level:}{Sor/Wiz 8}
\shortability{Components:}{V, S, M}
\shortability{Casting Time:}{One minute}
\shortability{Range:}{Close (25 ft. + 5 ft./2 levels)}
\shortability{Target:}{One living creature}
\shortability{Duration:}{See text (D)}
\shortability{Saving Throw:}{Will negates; see text}
\shortability{Spell Resistance:}{Yes}
\noindent A binding spell creates a magical restraint to hold a creature. The target gets an initial saving throw only if its Hit Dice equal at least one-half your caster level.
\smallskip\noindent You may have as many as six assistants help you with the spell. For each assistant who casts suggestion, your caster level for this casting of binding increases by 1. For each assistant who casts dominate animal, dominate person, or dominate monster, your caster level for this casting of binding increases by a number equal to one-third of that assistant's level, provided that the spell's target is appropriate for a binding spell. Since the assistants' spells are cast simply to improve your caster level for the purpose of the binding spell, saving throws and spell resistance against the assistants' spells are irrelevant. Your caster level determines whether the target gets an initial Will saving throw and how long the binding lasts. All binding spells are dismissible.
\smallskip\noindent Regardless of the version of binding you cast, you can specify triggering conditions that end the spell and release the creature whenever they occur. These triggers can be as simple or elaborate as you desire, but the condition must be reasonable and have a likelihood of coming to pass. The conditions can be based on a creature's name, identity, or alignment but otherwise must be based on observable actions or qualities. Intangibles such as level, class, Hit Dice, or hit points don't qualify. Once the spell is cast, its triggering conditions cannot be changed. Setting a release condition increases the save DC (assuming a saving throw is allowed) by 2.
\smallskip\noindent If you are casting any of the first three versions of binding (those with limited durations), you may cast additional binding spells to prolong the effect, since the durations overlap. If you do so, the target gets a saving throw at the end of the first spell's duration, even if your caster level was high enough to disallow an initial saving throw. If the creature succeeds on this save, all the binding spells it has received are broken.
\smallskip\noindent The binding spell has six versions. Choose one of the following versions when you cast the spell.
\shortability{Chaining:}{The subject is confined by restraints that generate an antipathy spell affecting all creatures who approach the subject, except you. The duration is one year per caster level. The subject of this form of binding is confined to the spot it occupied when it received the spell.}
\shortability{Slumber:}{This version causes the subject to become comatose for as long as one year per caster level. The subject does not need to eat or drink while slumbering, nor does it age. This form of binding is more difficult to cast than chaining, making it slightly easier to resist. Reduce the spell's save DC by 1.}
\shortability{Bound Slumber:}{This combination of chaining and slumber lasts for as long as one month per caster level. Reduce the save DC by 2.}
\shortability{Hedged Prison:}{The subject is transported to or otherwise brought within a confined area from which it cannot wander by any means. The effect is permanent. Reduce the save DC by 3.}
\shortability{Metamorphosis:}{The subject assumes gaseous form, except for its head or face. It is held harmless in a jar or other container, which may be transparent if you so choose. The creature remains aware of its surroundings and can speak, but it cannot leave the container, attack, or use any of its powers or abilities. The binding is permanent. The subject does not need to breathe, eat, or drink while metamorphosed, nor does it age. Reduce the save DC by 4.}
\shortability{Minimus Containment:}{The subject is shrunk to a height of 1 inch or even less and held within some gem, jar, or similar object. The binding is permanent. The subject does not need to breathe, eat, or drink while contained, nor does it age. Reduce the save DC by 4.}
\smallskip\noindent You can't dispel a binding spell with dispel magic or a similar effect, though an antimagic field or Mage's disjunction affects it normally. A bound extraplanar creature cannot be sent back to its home plane due to dismissal, banishment, or a similar effect.
\shortability{Components:}{The components for a binding spell vary according to the version of the spell, but they always include a continuous chanting utterance read from the scroll or spellbook page containing the spell, somatic gestures, and materials appropriate to the form of binding used. These components can include such items as miniature chains of special metals, soporific herbs of the rarest sort (for slumber bindings), a bell jar of the finest crystal, and the like.} In addition to the specially made props suited to the specific type of binding (cost 500 gp), the spell requires opals worth at least 500 gp for each HD of the target and a vellum depiction or carved statuette of the subject to be captured.
\featname{Black Tentacles}
\shortability{Conjuration}{(Creation)}
\shortability{Level:}{Sor/Wiz 4}
\shortability{Components:}{V, S, M}
\shortability{Casting Time:}{1 standard action}
\shortability{Range:}{Medium (100 ft. + 10 ft./level)}
\shortability{Area:}{20-ft.-radius spread}
\shortability{Duration:}{1 round/level (D)}
\shortability{Saving Throw:}{None}
\shortability{Spell Resistance:}{No}
\noindent This spell conjures a field of rubbery black tentacles, each 10 feet long. These waving members seem to spring forth from the earth, floor, or whatever surface is underfoot-including water. They grasp and entwine around creatures that enter the area, holding them fast and crushing them with great strength.
\smallskip\noindent Every creature within the area of the spell must make a grapple check, opposed by the grapple check of the tentacles. Treat the tentacles attacking a particular target as a Large creature with a base attack bonus equal to your caster level and a Strength score of 19. Thus, its grapple check modifier is equal to your caster level +8. The tentacles are immune to all types of damage.
\smallskip\noindent Once the tentacles grapple an opponent, they may make a grapple check each round on your turn to deal 1d6+4 points of bludgeoning damage. The tentacles continue to crush the opponent until the spell ends or the opponent escapes.
\smallskip\noindent Any creature that enters the area of the spell is immediately attacked by the tentacles. Even creatures who aren't grappling with the tentacles may move through the area at only half normal speed.
\shortability{Material Component:}{A piece of tentacle from a giant octopus or a giant squid.}
\featname{Blade Barrier}
\shortability{Evocation}{[Force]}
\shortability{Level:}{Clr 6, Good 6, War 6}
\shortability{Components:}{V, S}
\shortability{Casting Time:}{1 standard action}
\shortability{Range:}{Medium (100 ft. + 10 ft./level)}
\shortability{Effect:}{Wall of whirling blades up to 20 ft. long/ level, or a ringed wall of whirling blades with a radius of up to 5 ft. per two levels; either form 20 ft. high}
\shortability{Duration:}{1 min./level (D)}
\shortability{Saving Throw:}{Reflex half or Reflex negates; see text}
\shortability{Spell Resistance:}{Yes}
\noindent An immobile, vertical curtain of whirling blades shaped of pure force springs into existence. Any creature passing through the wall takes 1d6 points of damage per caster level (maximum 15d6), with a Reflex save for half damage.
\smallskip\noindent If you evoke the barrier so that it appears where creatures are, each creature takes damage as if passing through the wall. Each such creature can avoid the wall (ending up on the side of its choice) and thus take no damage by making a successful Reflex save.
\smallskip\noindent A blade barrier provides cover (+4 bonus to AC, +2 bonus on Reflex saves) against attacks made through it.
\featname{Blasphemy}
\shortability{Evocation}{[Evil, Sonic]}
\shortability{Level:}{Clr 7, Evil 7}
\shortability{Components:}{V}
\shortability{Casting Time:}{1 standard action}
\shortability{Range:}{40 ft.}
\shortability{Area:}{Nonevil creatures in a 40-ft.-radius spread centered on you}
\shortability{Duration:}{Instantaneous}
\shortability{Saving Throw:}{None or Will negates; see text}
\shortability{Spell Resistance:}{Yes}
\noindent Any nonevil creature within the area of a blasphemy spell suffers the following ill effects.
\begin{center}
\begin{tabular}[h!]{l|p{1.7in}}
HD & Effect \\ \hline
Equal to caster level & Dazed \\
Up to caster level -1 & Weakened, dazed \\
Up to caster level -5 & Paralyzed, weakened, dazed \\
Up to caster level -10 & Killed, paralyzed, weakened, dazed \\
\end{tabular}
\end{center}
\smallskip\noindent The effects are cumulative and concurrent.
\smallskip\noindent No saving throw is allowed against these effects.
\shortability{Dazed:}{The creature can take no actions for 1 round, though it defends itself normally.}
\shortability{Weakened:}{The creature's Strength score decreases by 2d6 points for 2d4 rounds.}
\shortability{Paralyzed:}{The creature is paralyzed and helpless for 1d10 minutes.}
\shortability{Killed:}{Living creatures die. Undead creatures are destroyed.}
\smallskip\noindent Furthermore, if you are on your home plane when you cast this spell, nonevil extraplanar creatures within the area are instantly banished back to their home planes. Creatures so banished cannot return for at least 24 hours. This effect takes place regardless of whether the creatures hear the blasphemy. The banishment effect allows a Will save (at a -4 penalty) to negate. Creatures whose Hit Dice exceed your caster level are unaffected by blasphemy.
\featname{Bless}
\shortability{Enchantment}{(Compulsion) [Mind-Affecting]}
\shortability{Level:}{Clr 1, Pal 1}
\shortability{Components:}{V, S, DF}
\shortability{Casting Time:}{1 standard action}
\shortability{Range:}{50 ft.}
\shortability{Area:}{The caster and all allies within a 50-ft. burst, centered on the caster}
\shortability{Duration:}{1 min./level}
\shortability{Saving Throw:}{None}
\shortability{Spell Resistance:}{Yes (harmless)}
\noindent Bless fills your allies with courage. Each ally gains a +1 morale bonus on attack rolls and on saving throws against fear effects.
\smallskip\noindent Bless counters and dispels bane.
\featname{Bless Water}
\shortability{Transmutation}{[Good]}
\shortability{Level:}{Clr 1, Pal 1}
\shortability{Components:}{V, S, M}
\shortability{Casting Time:}{1 minute}
\shortability{Range:}{Touch}
\shortability{Target:}{Flask of water touched}
\shortability{Duration:}{Instantaneous}
\shortability{Saving Throw:}{Will negates (object)}
\shortability{Spell Resistance:}{Yes (object)}
\noindent This transmutation imbues a flask (1 pint) of water with positive energy, turning it into holy water.
\shortability{Material Component:}{5 pounds of powdered silver (worth 25 gp).}
\featname{Bless Weapon}
\shortability{Transmutation}{}
\shortability{Level:}{Pal 1}
\shortability{Components:}{V, S}
\shortability{Casting Time:}{1 standard action}
\shortability{Range:}{Touch}
\shortability{Target:}{Weapon touched}
\shortability{Duration:}{1 min./level}
\shortability{Saving Throw:}{None}
\shortability{Spell Resistance:}{No}
\noindent This transmutation makes a weapon strike true against evil foes. The weapon is treated as having a +1 enhancement bonus for the purpose of bypassing the damage reduction of evil creatures or striking evil incorporeal creatures (though the spell doesn't grant an actual enhancement bonus). The weapon also becomes good, which means it can bypass the damage reduction of certain creatures. (This effect overrides and suppresses any other alignment the weapon might have.) Individual arrows or bolts can be transmuted, but affected projectile weapons (such as bows) don't confer the benefit to the projectiles they shoot.
\smallskip\noindent In addition, all critical hit rolls against evil foes are automatically successful, so every threat is a critical hit. This last effect does not apply to any weapon that already has a magical effect related to critical hits, such as a keen weapon or a vorpal sword.
\featname{Blight}
\shortability{Necromancy}{}
\shortability{Level:}{Drd 4, Sor/Wiz 5}
\shortability{Components:}{V, S, DF}
\shortability{Casting Time:}{1 standard action}
\shortability{Range:}{Touch}
\shortability{Duration:}{Instantaneous}
\shortability{Saving Throw:}{Fortitude half; see text}
\shortability{Spell Resistance:}{Yes}
\noindent This spell withers a single plant of any size. An affected plant creature takes 1d6 points of damage per level (maximum 15d6) and may attempt a Fortitude saving throw for half damage. A plant that isn't a creature doesn't receive a save and immediately withers and dies.
\smallskip\noindent This spell has no effect on the soil or surrounding plant life.
\featname{Blindness/Deafness}
\shortability{Necromancy}{}
\shortability{Level:}{Brd 2, Clr 3, Sor/Wiz 2}
\shortability{Components:}{V}
\shortability{Casting Time:}{1 standard action}
\shortability{Range:}{Medium (100 ft. + 10 ft./level)}
\shortability{Target:}{One living creature}
\shortability{Duration:}{Permanent (D)}
\shortability{Saving Throw:}{Fortitude negates}
\shortability{Spell Resistance:}{Yes}
\noindent You call upon the powers of unlife to render the subject blinded or deafened, as you choose.
\featname{Blink}
\shortability{Transmutation}{}
\shortability{Level:}{Brd 3, Sor/Wiz 3}
\shortability{Components:}{V, S}
\shortability{Casting Time:}{1 standard action}
\shortability{Range:}{Personal}
\shortability{Target:}{You}
\shortability{Duration:}{1 round/level (D)}
\noindent You "blink" back and forth between the Material Plane and the Ethereal Plane. You look as though you're winking in and out of reality very quickly and at random.
\smallskip\noindent Blinking has several effects, as follows.
\smallskip\noindent Physical attacks against you have a 50\% miss chance, and the Blind-Fight feat doesn't help opponents, since you're ethereal and not merely invisible. If the attack is capable of striking ethereal creatures, the miss chance is only 20\% (for concealment).
\smallskip\noindent If the attacker can see invisible creatures, the miss chance is also only 20\%. (For an attacker who can both see and strike ethereal creatures, there is no miss chance.) Likewise, your own attacks have a 20\% miss chance, since you sometimes go ethereal just as you are about to strike.
\smallskip\noindent Any individually targeted spell has a 50\% chance to fail against you while you're blinking unless your attacker can target invisible, ethereal creatures. Your own spells have a 20\% chance to activate just as you go ethereal, in which case they typically do not affect the Material Plane.
\smallskip\noindent While blinking, you take only half damage from area attacks (but full damage from those that extend onto the Ethereal Plane). You strike as an invisible creature (with a +2 bonus on attack rolls), denying your target any Dexterity bonus to AC.
\smallskip\noindent You take only half damage from falling, since you fall only while you are material.
\smallskip\noindent While blinking, you can step through (but not see through) solid objects. For each 5 feet of solid material you walk through, there is a 50\% chance that you become material. If this occurs, you are shunted off to the nearest open space and take 1d6 points of damage per 5 feet so traveled. You can move at only three-quarters speed (because movement on the Ethereal Plane is at half speed, and you spend about half your time there and half your time material.)
\smallskip\noindent Since you spend about half your time on the Ethereal Plane, you can see and even attack ethereal creatures. You interact with ethereal creatures roughly the same way you interact with material ones.
\smallskip\noindent An ethereal creature is invisible, incorporeal, and capable of moving in any direction, even up or down. As an incorporeal creature, you can move through solid objects, including living creatures.
\smallskip\noindent An ethereal creature can see and hear the Material Plane, but everything looks gray and insubstantial. Sight and hearing on the Material Plane are limited to 60 feet.
Force effects and abjurations affect you normally. Their effects extend onto the Ethereal Plane from the Material Plane, but not vice versa. An ethereal creature can't attack material creatures, and spells you cast while ethereal affect only other ethereal things. Certain material creatures or objects have attacks or effects that work on the Ethereal Plane. Treat other ethereal creatures and objects as material.
\featname{Blur}
\shortability{Illusion}{(Glamer)}
\shortability{Level:}{Brd 2,Sor/Wiz 2}
\shortability{Components:}{V}
\shortability{Casting Time:}{1 standard action}
\shortability{Range:}{Touch}
\shortability{Target:}{Creature touched}
\shortability{Duration:}{1 min./level (D)}
\shortability{Saving Throw:}{Will negates (harmless)}
\shortability{Spell Resistance:}{Yes (harmless)}
\noindent The subject's outline appears blurred, shifting and wavering. This distortion grants the subject concealment (20\% miss chance).
\smallskip\noindent A see invisibility spell does not counteract the blur effect, but a true seeing spell does.
\smallskip\noindent Opponents that cannot see the subject ignore the spell's effect (though fighting an unseen opponent carries penalties of its own).
\featname{Break Enchantment}
\shortability{Abjuration}{}
\shortability{Level:}{Brd 4, Clr 5, Luck 5, Pal 4, Sor/Wiz 5}
\shortability{Components:}{V, S}
\shortability{Casting Time:}{1 minute}
\shortability{Range:}{Close (25 ft. + 5 ft./2 levels)}
\shortability{Targets:}{Up to one creature per level, all within 30 ft. of each other}
\shortability{Duration:}{Instantaneous}
\shortability{Saving Throw:}{See text}
\shortability{Spell Resistance:}{No}
\noindent This spell frees victims from enchantments, transmutations, and curses. Break enchantment can reverse even an instantaneous effect. For each such effect, you make a caster level check (1d20 + caster level, maximum +15) against a DC of 11 + caster level of the effect. Success means that the creature is free of the spell, curse, or effect. For a cursed magic item, the DC is 25.
\smallskip\noindent If the spell is one that cannot be dispelled by dispel magic, break enchantment works only if that spell is 5th level or lower.
\smallskip\noindent If the effect comes from some permanent magic item break enchantment does not remove the curse from the item, but it does frees the victim from the item's effects.
\featname{Bull's Strength}
\shortability{Transmutation}{}
\shortability{Level:}{Clr 2, Drd 2, Pal 2, Sor/Wiz 2, Strength 2}
\shortability{Components:}{V, S, M/DF}
\shortability{Casting Time:}{1 standard action}
\shortability{Range:}{Touch}
\shortability{Target:}{Creature touched}
\shortability{Duration:}{1 min./level}
\shortability{Saving Throw}{Will negates (harmless)}
\shortability{Spell Resistance:}{Yes (harmless)}
\noindent The subject becomes stronger. The spell grants a +4 enhancement bonus to Strength, adding the usual benefits to melee attack rolls, melee damage rolls, and other uses of the Strength modifier.
\shortability{Arcane Material Component:}{A few hairs, or a pinch of dung, from a bull.}
\featname{Bull's Strength, Mass}
\shortability{Transmutation}{}
\shortability{Level:}{Clr 6, Drd 6, Sor/Wiz 6}
\shortability{Range:}{Close (25 ft. + 5 ft./2 levels)}
\shortability{Targets:}{One creature/level, no two of which can be more than 30 ft. apart}
\noindent This spell functions like bull's strength, except that it affects multiple creatures.
\featname{Burning Hands}
\shortability{Evocation}{[Fire]}
\shortability{Level:}{Fire 1, Sor/Wiz 1}
\shortability{Components:}{V, S}
\shortability{Casting Time:}{1 standard action}
\shortability{Range:}{15 ft.}
\shortability{Area:}{Cone-shaped burst}
\shortability{Duration:}{Instantaneous}
\shortability{Saving Throw:}{Reflex half}
\shortability{Spell Resistance:}{Yes}
\noindent A cone of searing flame shoots from your fingertips. Any creature in the area of the flames takes 1d4 points of fire damage per caster level (maximum 5d4). Flammable materials burn if the flames touch them. A character can extinguish burning items as a full-round action.
\featname{Call Lightning}
\shortability{Evocation}{[Electricity]}
\shortability{Level:{Drd 3}}
\shortability{Components:}{V, S}
\shortability{Casting Time:}{1 round}
\shortability{Range:}{Medium (100 ft. + 10 ft./level)}
\shortability{Effect:}{One or more 30-ft.-long vertical lines of lightning}
\shortability{Duration:}{1 min./level}
\shortability{Saving Throw:}{Reflex half}
\shortability{Spell Resistance:}{Yes}
\noindent Immediately upon completion of the spell, and once per round thereafter, you may call down a 5-foot-wide, 30-foot-long, vertical bolt of lightning that deals 3d6 points of electricity damage. The bolt of lightning flashes down in a vertical stroke at whatever target point you choose within the spell's range (measured from your position at the time). Any creature in the target square or in the path of the bolt is affected.
\smallskip\noindent You need not call a bolt of lightning immediately; other actions, even spellcasting, can be performed. However, each round after the first you may use a standard action (concentrating on the spell) to call a bolt. You may call a total number of bolts equal to your caster level (maximum 10 bolts).
\smallskip\noindent If you are outdoors and in a stormy area-a rain shower, clouds and wind, hot and cloudy conditions, or even a tornado (including a whirlwind formed by a djinni or an air elemental of at least Large size)-each bolt deals 3d10 points of electricity damage instead of 3d6.
\smallskip\noindent This spell functions indoors or underground but not underwater.
\featname{Call Lightning Storm}
\shortability{Evocation}{[Electricity]}
\shortability{Level:}{Drd 5}
\shortability{Range:}{Long (400 ft. + 40 ft./level)}
\noindent This spell functions like call lightning, except that each bolt deals 5d6 points of electricity damage (or 5d10 if created outdoors in a stormy area), and you may call a maximum of 15 bolts.
\featname{Calm Animals}
\shortability{Enchantment}{(Compulsion) [Mind-Affecting]}
\shortability{Level:}{Animal 1, Drd 1, Rgr 1}
\shortability{Components:}{V, S}
\shortability{Casting Time:}{1 standard action}
\shortability{Range:}{Close (25 ft. + 5 ft./2 levels)}
\shortability{Targets:}{Animals within 30 ft. of each other}
\shortability{Duration:}{1 min./level}
\shortability{Saving Throw:}{Will negates; see text}
\shortability{Spell Resistance:}{Yes}
\noindent This spell soothes and quiets animals, rendering them docile and harmless. Only ordinary animals (those with Intelligence scores of 1 or 2) can be affected by this spell. All the subjects must be of the same kind, and no two may be more than 30 feet apart. The maximum number of Hit Dice of animals you can affect is equal to 2d4 + caster level. A dire animal or an animal trained to attack or guard is allowed a saving throw; other animals are not.
\smallskip\noindent The affected creatures remain where they are and do not attack or flee. They are not helpless and defend themselves normally if attacked. Any threat breaks the spell on the threatened creatures.
\featname{Calm Emotions}
\shortability{Enchantment}{(Compulsion) [Mind-Affecting]}
\shortability{Level:}{Brd 2, Clr 2, Law 2}
\shortability{Components:}{V, S, DF}
\shortability{Casting Time:}{1 standard action}
\shortability{Range:}{Medium (100 ft. + 10 ft./level)}
\shortability{Area:}{Creatures in a 20-ft.-radius spread}
\shortability{Duration:}{Concentration, up to 1 round/level (D)}
\shortability{Saving Throw:}{Will negates}
\shortability{Spell Resistance:}{Yes}
\noindent This spell calms agitated creatures. You have no control over the affected creatures, but calm emotions can stop raging creatures from fighting or joyous ones from reveling. Creatures so affected cannot take violent actions (although they can defend themselves) or do anything destructive. Any aggressive action against or damage dealt to a calmed creature immediately breaks the spell on all calmed creatures.
\smallskip\noindent This spell automatically suppresses (but does not dispel) any morale bonuses granted by spells such as bless, good hope, and rage, as well as negating a bard's ability to inspire courage or a barbarian's rage ability. It also suppresses any fear effects and removes the confused condition from all targets. While the spell lasts, a suppressed spell or effect has no effect. When the calm emotions spell ends, the original spell or effect takes hold of the creature again, provided that its duration has not expired in the meantime.
\featname{Cat's Grace}
\shortability{Transmutation}{}
\shortability{Level:}{Brd 2, Drd 2, Rgr 2, Sor/Wiz 2}
\shortability{Components:}{V, S, M}
\shortability{Casting Time:}{1 standard action}
\shortability{Range:}{Touch}
\shortability{Target:}{Creature touched}
\shortability{Duration:}{1 min./level}
\shortability{Saving Throw:}{Will negates (harmless)}
\shortability{Spell Resistance:}{Yes}
\noindent The transmuted creature becomes more graceful, agile, and coordinated. The spell grants a +4 enhancement bonus to Dexterity, adding the usual benefits to AC, Reflex saves, and other uses of the Dexterity modifier.
\shortability{Material Component:}{A pinch of cat fur.}
\featname{Cat's Grace, Mass}
\shortability{Transmutation}{}
\shortability{Level:}{Brd 6, Drd 6, Sor/Wiz 6}
\shortability{Range:}{Close (25 ft. + 5 ft./2 levels)}
\shortability{Targets:}{One creature/level, no two of which can be more than 30 ft. apart}
\noindent This spell functions like cat's grace, except that it affects multiple creatures.
\featname{Cause Fear}
\shortability{Necromancy}{[Fear, Mind-Affecting]}
\shortability{Level:}{Brd 1, Clr 1, Death 1, Sor/Wiz 1}
\shortability{Components:}{V, S}
\shortability{Casting Time:}{1 standard action}
\shortability{Range:}{Close (25 ft. + 5 ft./2 levels)}
\shortability{Target:}{One living creature with 5 or fewer HD}
\shortability{Duration:}{1d4 rounds or 1 round; see text}
\shortability{Saving Throw:}{Will partial}
\shortability{Spell Resistance:}{Yes}
\noindent The affected creature becomes frightened. If the subject succeeds on a Will save, it is shaken for 1 round. Creatures with 6 or more Hit Dice are immune to this effect.
\smallskip\noindent Cause fear counters and dispels remove fear.
\featname{Chain Lightning}
\shortability{Evocation}{[Electricity]}
\shortability{Level:}{Air 6, Sor/Wiz 6}
\shortability{Components:}{V, S, F}
\shortability{Casting Time:}{1 standard action}
\shortability{Range:}{Long (400 ft. + 40 ft./level)}
\shortability{Targets:}{One primary target, plus one secondary target/level (each of which must be within 30 ft. of the primary target)}