-
Notifications
You must be signed in to change notification settings - Fork 0
/
featsFtb.html
998 lines (998 loc) · 51.2 KB
/
featsFtb.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
<!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 - Feats Fighter Bonus
</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></li>
<li><a href="featsAll.html"><div style="margin-left: 10px">In Alphabetical Order</div></a></li>
<li><a href="featsGen.html"><div style="margin-left: 10px">General</div></a></li>
<li class="selected"><a href="featsFtb.html"><div style="margin-left: 10px">Fighter Bonus</div></a></li>
<li><a href="featsItc.html"><div style="margin-left: 10px">Item Creation</div></a></li>
<li><a href="featsMtm.html"><div style="margin-left: 10px">Metamagic</div></a></li>
<li><a href="featsList.html"><div style="margin-left: 10px">Compiled</div></a></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>
<ul>
<li><a href="epicClasses.html">Epic Classes</a></li>
<li><a href="epicSkills.html">Epic Skills</a></li>
<li><a href="epicFeats.html">Epic Feats</a></li>
<li><a href="epicPrestigeClasses.html">Epic Prestige Classes</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">Epic Spells</a>
<ul>
<li><a href="epicSpellDevelopment.html">Developing</a></li>
</ul>
</li>
<li><a href="epicMagicItems.html">Epic Magic Items</a>
<ul>
<li><a href="epicMagicItemsOther.html">Other Items</a></li>
<li><a href="epicArtifacts.html">Intelligent Items and Artifacts</a></li>
</ul>
</li>
<li><a href="epicMonsters.html">Epic Monsters</a>
<ul>
<li><a href="epicNonAbominations.html">Non-Abominations</a></li>
</ul>
</li>
<li><a href="epicObstacles.html">Epic Obstacles</a></li>
</ul>
</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="feats-fighter-bonus"></a><h2>Feats</h2><br />
<h2 style="margin-top: -40px; margin-bottom: 0px"><span class="subtitle">Fighter Bonus</span>
</h2>
<h5>BLIND-FIGHT [GENERAL]</h5>
<p class="initial"><b>Benefit</b>: In melee, every time you miss
because of concealment, you can reroll your miss chance percentile roll
one time to see if you actually hit.</p>
<p>An invisible attacker gets no advantages related to hitting
you in melee. That is, you don’t lose your Dexterity bonus to Armor
Class, and the attacker doesn’t get the usual +2 bonus for being
invisible. The invisible attacker’s bonuses do still apply for ranged
attacks, however.</p>
<p>You take only half the usual penalty to speed for being unable
to see. Darkness and poor visibility in general reduces your speed to
three-quarters normal, instead of one-half.</p>
<p><b>Normal</b>: Regular attack roll modifiers for invisible
attackers trying to hit you apply, and you lose your Dexterity bonus to
AC. The speed reduction for darkness and poor visibility also applies.</p>
<p><b>Special</b>: The Blind-Fight feat is of no use against a
character who is the subject of a blink spell.</p>
<p>A fighter may select Blind-Fight as one of his fighter bonus
feats.</p>
<h5>CLEAVE [GENERAL]</h5>
<p class="initial"><b>Prerequisites</b>: Str 13, Power Attack.</p>
<p><b>Benefit</b>: If you deal a creature enough damage to make
it drop (typically by dropping it to below 0 hit points or killing it),
you get an immediate, extra melee attack against another creature
within reach. You cannot take a 5-foot step before making this extra
attack. The extra attack is with the same weapon and at the same bonus
as the attack that dropped the previous creature. You can use this
ability once per round.</p>
<p><b>Special</b>: A fighter may select Cleave as one of his
fighter bonus feats.</p>
<h5>COMBAT EXPERTISE [GENERAL]</h5>
<p class="initial"><b>Prerequisite</b>: Int 13.</p>
<p><b>Benefit</b>: When you use the attack action or the full
attack action in melee, you can take a penalty of as much as –5 on your
attack roll and add the same number (+5 or less) as a dodge bonus to
your Armor Class. This number may not exceed your base attack bonus.
The changes to attack rolls and Armor Class last until your next action.</p>
<p><b>Normal</b>: A character without the Combat Expertise feat
can fight defensively while using the attack or full attack action to
take a –4 penalty on attack rolls and gain a +2 dodge bonus to Armor
Class.</p>
<p><b>Special</b>: A fighter may select Combat Expertise as one
of his fighter bonus feats.</p>
<h5>COMBAT REFLEXES [GENERAL]</h5>
<p class="initial"><b>Benefit</b>: You may make a number of
additional attacks of opportunity equal to your Dexterity bonus.</p>
<p>With this feat, you may also make attacks of opportunity while
flat-footed.</p>
<p><b>Normal</b>: A character without this feat can make only one
attack of opportunity per round and can’t make attacks of opportunity
while flat-footed.</p>
<p><b>Special</b>: The Combat Reflexes feat does not allow a
rogue to use her opportunist ability more than once per round.</p>
<p>A fighter may select Combat Reflexes as one of his fighter
bonus feats.</p>
<p>A monk may select Combat Reflexes as a bonus feat at 2nd level.</p>
<h5>DEFLECT ARROWS [GENERAL]</h5>
<p class="initial"><b>Prerequisites</b>: Dex 13, Improved Unarmed
Strike.</p>
<p><b>Benefit</b>: You must have at least one hand free (holding
nothing) to use this feat. Once per round when you would normally be
hit with a ranged weapon, you may deflect it so that you take no damage
from it. You must be aware of the attack and not flatfooted. Attempting
to deflect a ranged weapon doesn’t count as an action. Unusually
massive ranged weapons and ranged attacks generated by spell effects
can’t be deflected.</p>
<p><b>Special:</b>A monk may select Deflect Arrows as a bonus
feat at 2nd level, even if she does not meet the prerequisites.</p>
<p>A fighter may select Deflect Arrows as one of his fighter
bonus feats.</p>
<h5>DODGE [GENERAL]</h5>
<p class="initial"><b>Prerequisite</b>: Dex 13.</p>
<p><b>Benefit</b>: During your action, you designate an opponent
and receive a +1 dodge bonus to Armor Class against attacks from that
opponent. You can select a new opponent on any action.</p>
<p>A condition that makes you lose your Dexterity bonus to Armor
Class (if any) also makes you lose dodge bonuses. Also, dodge bonuses
stack with each other, unlike most other types of bonuses.</p>
<p><b>Special</b>: A fighter may select Dodge as one of his
fighter bonus feats.</p>
<h5>EXOTIC WEAPON PROFICIENCY [GENERAL]</h5>
<p class="initial">Choose a type of exotic weapon. You understand
how to use that type of exotic weapon in combat.</p>
<p><b>Prerequisite</b>: Base attack bonus +1 (plus Str 13 for
bastard sword or dwarven waraxe).</p>
<p><b>Benefit</b>: You make attack rolls with the weapon normally.</p>
<p><b>Normal</b>: A character who uses a weapon with which he or
she is not proficient takes a –4 penalty on attack rolls.</p>
<p><b>Special</b>: You can gain Exotic Weapon Proficiency
multiple times. Each time you take the feat, it applies to a new type
of exotic weapon. Proficiency with the bastard sword or the dwarven
waraxe has an additional prerequisite of Str 13.</p>
<p>A fighter may select Exotic Weapon Proficiency as one of his
fighter bonus feats.</p>
<h5>FAR SHOT [GENERAL]</h5>
<p class="initial"><b>Prerequisite</b>: Point Blank Shot.</p>
<p><b>Benefit</b>: When you use a projectile weapon, such as a
bow, its range increment increases by one-half (multiply by 1-1/2).
When you use a thrown weapon, its range increment is doubled.</p>
<p><b>Special</b>: A fighter may select Far Shot as one of his
fighter bonus feats.</p>
<h5>GREAT CLEAVE [GENERAL]</h5>
<p class="initial"><b>Prerequisites</b>: Str 13, Cleave, Power
Attack, base attack bonus +4.</p>
<p><b>Benefit</b>: This feat works like Cleave, except that there
is no limit to the number of times you can use it per round.</p>
<p><b>Special</b>: A fighter may select Great Cleave as one of
his fighter bonus feats.</p>
<h5>GREATER TWO-WEAPON FIGHTING [GENERAL]</h5>
<p class="initial"><b>Prerequisites</b>: Dex 19, Improved
Two-Weapon Fighting, Two-Weapon Fighting, base attack bonus +11.</p>
<p><b>Benefit</b>: You get a third attack with your off-hand
weapon, albeit at a –10 penalty.</p>
<p><b>Special</b>: A fighter may select Greater Two-Weapon
Fighting as one of his fighter bonus feats.</p>
<p>An 11th-level ranger who has chosen the two-weapon combat
style is treated as having Greater Two-Weapon Fighting, even if he does
not have the prerequisites for it, but only when he is wearing light or
no armor.</p>
<h5>GREATER WEAPON FOCUS [GENERAL]</h5>
<p class="initial">Choose one type of weapon for which you have
already selected Weapon Focus. You can also choose unarmed strike or
grapple as your weapon for purposes of this feat.</p>
<p><b>Prerequisites</b>: Proficiency with selected weapon, Weapon
Focus with selected weapon, fighter level 8th.</p>
<p><b>Benefit</b>: You gain a +1 bonus on all attack rolls you
make using the selected weapon. This bonus stacks with other bonuses on
attack rolls, including the one from Weapon Focus (see below).</p>
<p><b>Special</b>: You can gain Greater Weapon Focus multiple
times. Its effects do not stack. Each time you take the feat, it
applies to a new type of weapon.</p>
<p>A fighter must have Greater Weapon Focus with a given weapon
to gain the Greater Weapon Specialization feat for that weapon.</p>
<p>A fighter may select Greater Weapon Focus as one of his
fighter bonus feats.</p>
<h5>GREATER WEAPON SPECIALIZATION [GENERAL]</h5>
<p class="initial">Choose one type of weapon for which you have
already selected Weapon Specialization. You can also choose unarmed
strike or grapple as your weapon for purposes of this feat.</p>
<p><b>Prerequisites</b>: Proficiency with selected weapon,
Greater Weapon Focus with selected weapon, Weapon Focus with selected
weapon, Weapon Specialization with selected weapon, fighter level 12th.</p>
<p><b>Benefit</b>: You gain a +2 bonus on all damage rolls you
make using the selected weapon. This bonus stacks with other bonuses on
damage rolls, including the one from Weapon Specialization (see below).</p>
<p><b>Special</b>: You can gain Greater Weapon Specialization
multiple times. Its effects do not stack. Each time you take the feat,
it applies to a new type of weapon.</p>
<p>A fighter may select Greater Weapon Specialization as one of
his fighter bonus feats.</p>
<h5>IMPROVED BULL RUSH [GENERAL]</h5>
<p class="initial"><b>Prerequisites</b>: Str 13, Power Attack.</p>
<p><b>Benefit</b>: When you perform a bull rush you do not
provoke an attack of opportunity from the defender. You also gain a +4
bonus on the opposed Strength check you make to push back the defender.</p>
<p><b>Special</b>: A fighter may select Improved Bull Rush as one
of his fighter bonus feats.</p>
<h5>IMPROVED CRITICAL [GENERAL]</h5>
<p class="initial">Choose one type of weapon.</p>
<p><b>Prerequisite</b>: Proficient with weapon, base attack bonus
+8.</p>
<p><b>Benefit</b>: When using the weapon you selected, your
threat range is doubled.</p>
<p><b>Special</b>: You can gain Improved Critical multiple times.
The effects do not stack. Each time you take the feat, it applies to a
new type of weapon.</p>
<p>This effect doesn’t stack with any other effect that expands
the threat range of a weapon.</p>
<p>A fighter may select Improved Critical as one of his fighter
bonus feats.</p>
<h5>IMPROVED DISARM [GENERAL]</h5>
<p class="initial">Prerequisites: Int 13, Combat Expertise.</p>
<p><b>Benefit</b>: You do not provoke an attack of opportunity
when you attempt to disarm an opponent, nor does the opponent have a
chance to disarm you. You also gain a +4 bonus on the opposed attack
roll you make to disarm your opponent.</p>
<p><b>Normal</b>: See the normal disarm rules.</p>
<p><b>Special</b>: A fighter may select Improved Disarm as one of
his fighter bonus feats.</p>
<p>A monk may select Improved Disarm as a bonus feat at 6th
level, even if she does not meet the prerequisites.</p>
<h5>IMPROVED FEINT [GENERAL]</h5>
<p class="initial"><b>Prerequisites</b>: Int 13, Combat Expertise.</p>
<p><b>Benefit</b>: You can make a Bluff check to feint in combat
as a move action.</p>
<p><b>Normal</b>: Feinting in combat is a standard action.</p>
<p>A fighter may select Improved Feint as one of his fighter
bonus feats.</p>
<h5>IMPROVED GRAPPLE [GENERAL]</h5>
<p class="initial"><b>Prerequisites</b>: Dex 13, Improved Unarmed
Strike.</p>
<p><b>Benefit</b>: You do not provoke an attack of opportunity
when you make a touch attack to start a grapple. You also gain a +4
bonus on all grapple checks, regardless of whether you started the
grapple.</p>
<p><b>Normal</b>: Without this feat, you provoke an attack of
opportunity when you make a touch attack to start a grapple.</p>
<p><b>Special</b>: A fighter may select Improved Grapple as one
of his fighter bonus feats.</p>
<p>A monk may select Improved Grapple as a bonus feat at 1st
level, even if she does not meet the prerequisites.</p>
<h5>IMPROVED INITIATIVE [GENERAL]</h5>
<p class="initial"><b>Benefit</b>: You get a +4 bonus on
initiative checks.</p>
<p><b>Special</b>: A fighter may select Improved Initiative as
one of his fighter bonus feats.</p>
<h5>IMPROVED OVERRUN [GENERAL]</h5>
<p class="initial"><b>Prerequisites</b>: Str 13, Power Attack.</p>
<p><b>Benefit</b>: When you attempt to overrun an opponent, the
target may not choose to avoid you. You also gain a +4 bonus on your
Strength check to knock down your opponent.</p>
<p><b>Normal</b>: Without this feat, the target of an overrun can
choose to avoid you or to block you.</p>
<p><b>Special</b>: A fighter may select Improved Overrun as one
of his fighter bonus feats.</p>
<h5>IMPROVED PRECISE SHOT [GENERAL]</h5>
<p class="initial"><b>Prerequisites</b>: Dex 19, Point Blank
Shot, Precise Shot, base attack bonus +11.</p>
<p><b>Benefit</b>: Your ranged attacks ignore the AC bonus
granted to targets by anything less than total cover, and the miss
chance granted to targets by anything less than total concealment.
Total cover and total concealment provide their normal benefits against
your ranged attacks.</p>
<p>In addition, when you shoot or throw ranged weapons at a
grappling opponent, you automatically strike at the opponent you have
chosen.</p>
<p><b>Normal</b>: See the normal rules on the effects of cover
and concealment. Without this feat, a character who shoots or throws a
ranged weapon at a target involved in a grapple must roll randomly to
see which grappling combatant the attack strikes.</p>
<p><b>Special</b>: A fighter may select Improved Precise Shot as
one of his fighter bonus feats.</p>
<p>An 11th-level ranger who has chosen the archery combat style
is treated as having Improved Precise Shot, even if he does not have
the prerequisites for it, but only when he is wearing light or no armor.</p>
<h5>IMPROVED SHIELD BASH [GENERAL]</h5>
<p class="initial"><b>Prerequisite</b>: Shield Proficiency.</p>
<p><b>Benefit</b>: When you perform a shield bash, you may still
apply the shield’s shield bonus to your AC.</p>
<p><b>Normal</b>: Without this feat, a character who performs a
shield bash loses the shield’s shield bonus to AC until his or her next
turn.</p>
<p><b>Special</b>: A fighter may select Improved Shield Bash as
one of his fighter bonus feats.</p>
<h5>IMPROVED SUNDER [GENERAL]</h5>
<p class="initial"><b>Prerequisites</b>: Str 13, Power Attack.</p>
<p><b>Benefit</b>: When you strike at an object held or carried
by an opponent (such as a weapon or shield), you do not provoke an
attack of opportunity (see Sunder, page 158).</p>
<p>You also gain a +4 bonus on any attack roll made to attack an
object held or carried by another character.</p>
<p><b>Normal</b>: Without this feat, you provoke an attack of
opportunity when you strike at an object held or carried by another
character.</p>
<p><b>Special</b>: A fighter may select Improved Sunder as one of
his fighter bonus feats (see page 38).</p>
<h5>IMPROVED TRIP [GENERAL]</h5>
<p class="initial"><b>Prerequisites</b>: Int 13, Combat Expertise.</p>
<p><b>Benefit</b>: You do not provoke an attack of opportunity
when you attempt to trip an opponent while you are unarmed. You also
gain a +4 bonus on your Strength check to trip your opponent.</p>
<p>If you trip an opponent in melee combat, you immediately get a
melee attack against that opponent as if you hadn’t used your attack
for the trip attempt. </p>
<p><b>Normal</b>: Without this feat, you provoke an attack of
opportunity when you attempt to trip an opponent while you are unarmed.</p>
<p><b>Special</b>: At 6th level, a monk may select Improved Trip
as a bonus feat, even if she does not have the prerequisites.</p>
<p>A fighter may select Improved Trip as one of his fighter bonus
feats.</p>
<h5>IMPROVED TWO-WEAPON FIGHTING [GENERAL]</h5>
<p class="initial"><b>Prerequisites</b>: Dex 17, Two-Weapon
Fighting, base attack bonus +6.</p>
<p><b>Benefit</b>: In addition to the standard single extra
attack you get with an off-hand weapon, you get a second attack with
it, albeit at a –5 penalty.</p>
<p><b>Normal</b>: Without this feat, you can only get a single
extra attack with an off-hand weapon.</p>
<p><b>Special</b>: A fighter may select Improved Two-Weapon
Fighting as one of his fighter bonus feats.</p>
<p>A 6th-level ranger who has chosen the two-weapon combat style
is treated as having Improved Two-Weapon Fighting, even if he does not
have the prerequisites for it, but only when he is wearing light or no
armor.</p>
<h5>IMPROVED UNARMED STRIKE [GENERAL]</h5>
<p class="initial"><b>Benefit</b>: You are considered to be armed
even when unarmed —that is, you do not provoke attacks of opportunity
from armed opponents when you attack them while unarmed. However, you
still get an attack of opportunity against any opponent who makes an
unarmed attack on you.</p>
<p>In addition, your unarmed strikes can deal lethal or nonlethal
damage, at your option.</p>
<p><b>Normal</b>: Without this feat, you are considered unarmed
when attacking with an unarmed strike, and you can deal only nonlethal
damage with such an attack.</p>
<p><b>Special</b>: A monk automatically gains Improved Unarmed
Strike as a bonus feat at 1st level. She need not select it.</p>
<p>A fighter may select Improved Unarmed Strike as one of his
fighter bonus feats.</p>
<h5>MANYSHOT [GENERAL]</h5>
<p class="initial"><b>Prerequisites</b>: Dex 17, Point Blank
Shot, Rapid Shot, base attack bonus +6</p>
<p><b>Benefit</b>: As a standard action, you may fire two arrows
at a single opponent within 30 feet. Both arrows use the same attack
roll (with a –4 penalty) to determine success and deal damage normally
(but see Special).</p>
<p>For every five points of base attack bonus you have above +6,
you may add one additional arrow to this attack, to a maximum of four
arrows at a base attack bonus of +16. However, each arrow after the
second adds a cumulative –2 penalty on the attack roll (for a total
penalty of –6 for three arrows and –8 for four).</p>
<p>Damage reduction and other resistances apply separately
against each arrow fired.</p>
<p><b>Special</b>: Regardless of the number of arrows you fire,
you apply precision-based damage only once. If you score a critical
hit, only the first arrow fired deals critical damage; all others deal
regular damage.</p>
<p>A fighter may select Manyshot as one of his fighter bonus
feats.</p>
<p>A 6th-level ranger who has chosen the archery combat style is
treated as having Manyshot even if he does not have the prerequisites
for it, but only when he is wearing light or no armor.</p>
<h5>MOBILITY [GENERAL]</h5>
<p class="initial"><b>Prerequisites</b>: Dex 13, Dodge.</p>
<p><b>Benefit</b>: You get a +4 dodge bonus to Armor Class
against attacks of opportunity caused when you move out of or within a
threatened area. A condition that makes you lose your Dexterity bonus
to Armor Class (if any) also makes you lose dodge bonuses.</p>
<p>Dodge bonuses stack with each other, unlike most types of
bonuses.</p>
<p><b>Special</b>: A fighter may select Mobility as one of his
fighter bonus feats.</p>
<h5>MOUNTED ARCHERY [GENERAL]</h5>
<p class="initial"><b>Prerequisites</b>: Ride 1 rank, Mounted
Combat.</p>
<p><b>Benefit</b>: The penalty you take when using a ranged
weapon while mounted is halved: –2 instead of –4 if your mount is
taking a double move, and –4 instead of –8 if your mount is running.</p>
<p><b>Special</b>: A fighter may select Mounted Archery as one of
his fighter bonus feats.</p>
<h5>MOUNTED COMBAT [GENERAL]</h5>
<p class="initial"><b>Prerequisite</b>: Ride 1 rank.</p>
<p><b>Benefit</b>: Once per round when your mount is hit in
combat, you may attempt a Ride check (as a reaction) to negate the hit.
The hit is negated if your Ride check result is greater than the
opponent’s attack roll. (Essentially, the Ride check result becomes the
mount’s Armor Class if it’s higher than the mount’s regular AC.)</p>
<p><b>Special</b>: A fighter may select Mounted Combat as one of
his fighter bonus feats.</p>
<h5>POINT BLANK SHOT [GENERAL]</h5>
<p class="initial"><b>Benefit</b>: You get a +1 bonus on attack
and damage rolls with ranged weapons at ranges of up to 30 feet.</p>
<p><b>Special</b>: A fighter may select Point Blank Shot as one
of his fighter bonus feats.</p>
<h5>POWER ATTACK [GENERAL]</h5>
<p class="initial"><b>Prerequisite</b>: Str 13.</p>
<p><b>Benefit</b>: On your action, before making attack rolls for
a round, you may choose to subtract a number from all melee attack
rolls and add the same number to all melee damage rolls. This number
may not exceed your base attack bonus. The penalty on attacks and bonus
on damage apply until your next turn.</p>
<p><b>Special</b>: If you attack with a two-handed weapon, or
with a one-handed weapon wielded in two hands, instead add twice the
number subtracted from your attack rolls. You can’t add the bonus from
Power Attack to the damage dealt with a light weapon (except with
unarmed strikes or natural weapon attacks), even though the penalty on
attack rolls still applies. (Normally, you treat a double weapon as a
one-handed weapon and a light weapon. If you choose to use a double
weapon like a two-handed weapon, attacking with only one end of it in a
round, you treat it as a two-handed weapon.)</p>
<p>A fighter may select Power Attack as one of his fighter bonus
feats.</p>
<h5>PRECISE SHOT [GENERAL]</h5>
<p class="initial"><b>Prerequisite</b>: Point Blank Shot.</p>
<p><b>Benefit</b>: You can shoot or throw ranged weapons at an
opponent engaged in melee without taking the standard –4 penalty on
your attack roll.</p>
<p><b>Special</b>: A fighter may select Precise Shot as one of
his fighter bonus feats.</p>
<h5>QUICK DRAW [GENERAL]</h5>
<p class="initial"><b>Prerequisite</b>: Base attack bonus +1.</p>
<p><b>Benefit</b>: You can draw a weapon as a free action instead
of as a move action. You can draw a hidden weapon (see the Sleight of
Hand skill) as a move action.</p>
<p>A character who has selected this feat may throw weapons at
his full normal rate of attacks (much like a character with a bow).</p>
<p><b>Normal</b>: Without this feat, you may draw a weapon as a
move action, or (if your base attack bonus is +1 or higher) as a free
action as part of movement. Without this feat, you can draw a hidden
weapon as a standard action.</p>
<p><b>Special</b>: A fighter may select Quick Draw as one of his
fighter bonus feats.</p>
<h5>RAPID RELOAD [GENERAL]</h5>
<p class="initial">Choose a type of crossbow (hand, light, or
heavy).</p>
<p><b>Prerequisite</b>: Weapon Proficiency (crossbow type chosen).</p>
<p><b>Benefit</b>: The time required for you to reload your
chosen type of crossbow is reduced to a free action (for a hand or
light crossbow) or a move action (for a heavy crossbow). Reloading a
crossbow still provokes an attack of opportunity.</p>
<p>If you have selected this feat for hand crossbow or light
crossbow, you may fire that weapon as many times in a full attack
action as you could attack if you were using a bow.</p>
<p><b>Normal</b>: A character without this feat needs a move
action to reload a hand or light crossbow, or a full-round action to
reload a heavy crossbow.</p>
<p><b>Special</b>: You can gain Rapid Reload multiple times. Each
time you take the feat, it applies to a new type of crossbow.</p>
<p>A fighter may select Rapid Reload as one of his fighter bonus
feats.</p>
<h5>RAPID SHOT [GENERAL]</h5>
<p class="initial"><b>Prerequisites</b>: Dex 13, Point Blank Shot.</p>
<p><b>Benefit</b>: You can get one extra attack per round with a
ranged weapon. The attack is at your highest base attack bonus, but
each attack you make in that round (the extra one and the normal ones)
takes a –2 penalty. You must use the full attack action to use this
feat.</p>
<p><b>Special</b>: A fighter may select Rapid Shot as one of his
fighter bonus feats.</p>
<p>A 2nd-level ranger who has chosen the archery combat style is
treated as having Rapid Shot, even if he does not have the
prerequisites for it, but only when he is wearing light or no armor.</p>
<h5>RIDE-BY ATTACK [GENERAL]</h5>
<p class="initial"><b>Prerequisites</b>: Ride 1 rank, Mounted
Combat.</p>
<p><b>Benefit</b>: When you are mounted and use the charge
action, you may move and attack as if with a standard charge and then
move again (continuing the straight line of the charge). Your total
movement for the round can’t exceed double your mounted speed. You and
your mount do not provoke an attack of opportunity from the opponent
that you attack.</p>
<p><b>Special</b>: A fighter may select Ride-By Attack as one of
his fighter bonus feats.</p>
<h5>SHOT ON THE RUN [GENERAL]</h5>
<p class="initial"><b>Prerequisites</b>: Dex 13, Dodge, Mobility,
Point Blank Shot, base attack bonus +4.</p>
<p><b>Benefit</b>: When using the attack action with a ranged
weapon, you can move both before and after the attack, provided that
your total distance moved is not greater than your speed.</p>
<p><b>Special</b>: A fighter may select Shot on the Run as one of
his fighter bonus feats.</p>
<h5>SNATCH ARROWS [GENERAL]</h5>
<p class="initial"><b>Prerequisites</b>: Dex 15, Deflect Arrows,
Improved Unarmed Strike.</p>
<p><b>Benefit</b>: When using the Deflect Arrows feat you may
catch the weapon instead of just deflecting it. Thrown weapons can
immediately be thrown back at the original attacker (even though it
isn’t your turn) or kept for later use.</p>
<p>You must have at least one hand free (holding nothing) to use
this feat.</p>
<p><b>Special</b>: A fighter may select Snatch Arrows as one of
his fighter bonus feats.</p>
<h5>SPIRITED CHARGE [GENERAL]</h5>
<p class="initial"><b>Prerequisites</b>: Ride 1 rank, Mounted
Combat, Ride-By Attack.</p>
<p><b>Benefit</b>: When mounted and using the charge action, you
deal double damage with a melee weapon (or triple damage with a lance).</p>
<p><b>Special</b>: A fighter may select Spirited Charge as one of
his fighter bonus feats.</p>
<h5>SPRING ATTACK [GENERAL]</h5>
<p class="initial"><b>Prerequisites</b>: Dex 13, Dodge, Mobility,
base attack bonus +4.</p>
<p><b>Benefit</b>: When using the attack action with a melee
weapon, you can move both before and after the attack, provided that
your total distance moved is not greater than your speed. Moving in
this way does not provoke an attack of opportunity from the defender
you attack, though it might provoke attacks of opportunity from other
creatures, if appropriate. You can’t use this feat if you are wearing
heavy armor.</p>
<p>You must move at least 5 feet both before and after you make
your attack in order to utilize the benefits of Spring Attack.</p>
<p><b>Special</b>: A fighter may select Spring Attack as one of
his fighter bonus feats.</p>
<h5>STUNNING FIST [GENERAL]</h5>
<p class="initial"><b>Prerequisites</b>: Dex 13, Wis 13, Improved
Unarmed Strike, base attack bonus +8.</p>
<p><b>Benefit</b>: You must declare that you are using this feat
before you make your attack roll (thus, a failed attack roll ruins the
attempt). Stunning Fist forces a foe damaged by your unarmed attack to
make a Fortitude saving throw (DC 10 + 1/2 your character level + your
Wis modifier), in addition to dealing damage normally. A defender who
fails this saving throw is stunned for 1 round (until just before your
next action). A stunned character can’t act, loses any Dexterity bonus
to AC, and takes a –2 penalty to AC. You may attempt a stunning attack
once per day for every four levels you have attained (but see Special),
and no more than once per round. Constructs, oozes, plants, undead,
incorporeal creatures, and creatures immune to critical hits cannot be
stunned.</p>
<p><b>Special</b>: A monk may select Stunning Fist as a bonus
feat at 1st level, even if she does not meet the prerequisites. A monk
who selects this feat may attempt a stunning attack a number of times
per day equal to her monk level, plus one more time per day for every
four levels she has in classes other than monk.</p>
<p>A fighter may select Stunning Fist as one of his fighter bonus
feats.</p>
<h5>TRAMPLE [GENERAL]</h5>
<p class="initial"><b>Prerequisites</b>: Ride 1 rank, Mounted
Combat.</p>
<p><b>Benefit</b>: When you attempt to overrun an opponent while
mounted, your target may not choose to avoid you. Your mount may make
one hoof attack against any target you knock down, gaining the standard
+4 bonus on attack rolls against prone targets.</p>
<p><b>Special</b>: A fighter may select Trample as one of his
fighter bonus feats.</p>
<h5>TWO-WEAPON DEFENSE [GENERAL]</h5>
<p class="initial"><b>Prerequisites</b>: Dex 15, Two-Weapon
Fighting.</p>
<p><b>Benefit</b>: When wielding a double weapon or two weapons
(not including natural weapons or unarmed strikes), you gain a +1
shield bonus to your AC.</p>
<p>When you are fighting defensively or using the total defense
action, this shield bonus increases to +2.</p>
<p><b>Special</b>: A fighter may select Two-Weapon Defense as one
of his fighter bonus feats.</p>
<h5>TWO-WEAPON FIGHTING [GENERAL]</h5>
<p class="initial">You can fight with a weapon in each hand. You
can make one extra attack each round with the second weapon.</p>
<p><b>Prerequisite</b>: Dex 15.</p>
<p><b>Benefit</b>: Your penalties on attack rolls for fighting
with two weapons are reduced. The penalty for your primary hand lessens
by 2 and the one for your off hand lessens by 6.</p>
<p><b>Normal</b>: If you wield a second weapon in your off hand,
you can get one extra attack per round with that weapon. When fighting
in this way you suffer a –6 penalty with your regular attack or attacks
with your primary hand and a –10 penalty to the attack with your off
hand. If your off-hand weapon is light the penalties are reduced by 2
each. (An unarmed strike is always considered light.)</p>
<p><b>Special</b>: A 2nd-level ranger who has chosen the
two-weapon combat style is treated as having Two-Weapon Fighting, even
if he does not have the prerequisite for it, but only when he is
wearing light or no armor.</p>
<p>A fighter may select Two-Weapon Fighting as one of his fighter
bonus feats.</p>
<h5>WEAPON FINESSE [GENERAL]</h5>
<p class="initial"><b>Prerequisite</b>: Base attack bonus +1.</p>
<p><b>Benefit</b>: With a light weapon, rapier, whip, or spiked
chain made for a creature of your size category, you may use your
Dexterity modifier instead of your Strength modifier on attack rolls.
If you carry a shield, its armor check penalty applies to your attack
rolls.</p>
<p><b>Special</b>: A fighter may select Weapon Finesse as one of
his fighter bonus feats.</p>
<p>Natural weapons are always considered light weapons.</p>
<h5>WEAPON FOCUS [GENERAL]</h5>
<p class="initial">Choose one type of weapon. You can also choose
unarmed strike or grapple (or ray, if you are a spellcaster) as your
weapon for purposes of this feat.</p>
<p><b>Prerequisites</b>: Proficiency with selected weapon, base
attack bonus +1.</p>
<p><b>Benefit</b>: You gain a +1 bonus on all attack rolls you
make using the selected weapon.</p>
<p><b>Special</b>: You can gain this feat multiple times. Its
effects do not stack. Each time you take the feat, it applies to a new
type of weapon.</p>
<p>A fighter may select Weapon Focus as one of his fighter bonus
feats. He must have Weapon Focus with a weapon to gain the Weapon
Specialization feat for that weapon.</p>
<h5>WEAPON SPECIALIZATION [GENERAL]</h5>
<p class="initial">Choose one type of weapon for which you have
already selected the Weapon Focus feat. You can also choose unarmed
strike or grapple as your weapon for purposes of this feat. You deal
extra damage when using this weapon.</p>
<p><b>Prerequisites</b>: Proficiency with selected weapon, Weapon
Focus with selected weapon, fighter level 4th.</p>
<p><b>Benefit</b>: You gain a +2 bonus on all damage rolls you
make using the selected weapon.</p>
<p><b>Special</b>: You can gain this feat multiple times. Its
effects do not stack. Each time you take the feat, it applies to a new
type of weapon.</p>
<p>A fighter may select Weapon Specialization as one of his
fighter bonus feats.</p>
<h5>WHIRLWIND ATTACK [GENERAL]</h5>
<p class="initial"><b>Prerequisites</b>: Dex 13, Int 13, Combat
Expertise, Dodge, Mobility, Spring Attack, base attack bonus +4.</p>
<p><b>Benefit</b>: When you use the full attack action, you can
give up your regular attacks and instead make one melee attack at your
full base attack bonus against each opponent within reach.</p>
<p>When you use the Whirlwind Attack feat, you also forfeit any
bonus or extra attacks granted by other feats, spells, or abilities.</p>
<p><b>Special</b>: A fighter may select Whirlwind Attack as one
of his fighter bonus feats.</p>
<br />
</td>
</tr>
</tbody>
</table>
</body>
</html>