-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtibbar.dnd4e
executable file
·2658 lines (2460 loc) · 177 KB
/
tibbar.dnd4e
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
<D20Character game-system="D&D4E" Version="0.07a" legality="rules-legal" >
<!--
Dungeons and Dragons Insider: Character Builder character save file
-->
<!--
This section provides computed data for applications
without access to the rules engine and rules data.
-->
<CharacterSheet>
<Details>
<name> Tibbar </name>
<Level> 16 </Level>
<Player> </Player>
<Height> 6'0" </Height>
<Weight> 180 </Weight>
<Gender> </Gender>
<Age> 27 </Age>
<Alignment> </Alignment>
<Company> </Company>
<Portrait> </Portrait>
<Experience> 69000 </Experience>
<CarriedMoney> 100 gp </CarriedMoney>
<StoredMoney> 0 gp </StoredMoney>
<Traits> </Traits>
<Appearance> </Appearance>
<Companions> </Companions>
<Notes> </Notes>
</Details>
<!--
Base ability scores (see stats of same name for final adjusted score)
-->
<AbilityScores legality="rules-legal" >
<Strength score="17" />
<Constitution score="9" />
<Dexterity score="11" />
<Intelligence score="14" />
<Wisdom score="10" />
<Charisma score="13" />
</AbilityScores>
<!--
Final computed stat values - the various numbers
on the character sheet are here along with behind the scenes
values to build them.
-->
<StatBlock>
<Stat value="20" >
<alias name="Strength" />
<alias name="str" />
<statadd value="17" />
<statadd Level="4" value="1" charelem="adc2de0" />
<statadd Level="8" value="1" charelem="afa7f70" />
<statadd Level="11" value="1" charelem="ae59928" />
</Stat>
<Stat value="12" >
<alias name="Constitution" />
<alias name="con" />
<statadd value="9" />
<statadd Level="1" value="2" charelem="af46f50" />
<statadd Level="11" value="1" charelem="ae59928" />
</Stat>
<Stat value="14" >
<alias name="Dexterity" />
<alias name="dex" />
<statadd value="11" />
<statadd Level="1" value="2" charelem="ae50640" />
<statadd Level="11" value="1" charelem="ae59928" />
</Stat>
<Stat value="16" >
<alias name="Intelligence" />
<alias name="int" />
<statadd value="14" />
<statadd Level="11" value="1" charelem="ae59928" />
<statadd Level="14" value="1" charelem="af51a10" />
</Stat>
<Stat value="11" >
<alias name="Wisdom" />
<alias name="wis" />
<statadd value="10" />
<statadd Level="11" value="1" charelem="ae59928" />
</Stat>
<Stat value="17" >
<alias name="Charisma" />
<alias name="cha" />
<statadd value="13" />
<statadd Level="4" value="1" charelem="aded9e8" />
<statadd Level="8" value="1" charelem="afa7d30" />
<statadd Level="11" value="1" charelem="ae59928" />
<statadd Level="14" value="1" charelem="ae703e8" />
</Stat>
<Stat value="5" >
<alias name="Strength modifier" />
<statadd Level="1" value="1" statlink="Strength" abilmod="true" charelem="af6df18" />
</Stat>
<Stat value="2" >
<alias name="Dexterity modifier" />
<statadd Level="1" value="1" statlink="Dexterity" abilmod="true" charelem="af6df18" />
</Stat>
<Stat value="1" >
<alias name="Constitution modifier" />
<statadd Level="1" value="1" statlink="Constitution" abilmod="true" charelem="af6df18" />
</Stat>
<Stat value="3" >
<alias name="Intelligence modifier" />
<statadd Level="1" value="1" statlink="Intelligence" abilmod="true" charelem="af6df18" />
</Stat>
<Stat value="0" >
<alias name="Wisdom modifier" />
<statadd Level="1" value="1" statlink="Wisdom" abilmod="true" charelem="af6df18" />
</Stat>
<Stat value="3" >
<alias name="Charisma modifier" />
<statadd Level="1" value="1" statlink="Charisma" abilmod="true" charelem="af6df18" />
</Stat>
<Stat value="31" >
<alias name="AC" />
<alias name="Armor Class" />
<statadd Level="1" value="10" charelem="af6df18" />
<statadd Level="1" value="1" statlink="HALF-LEVEL" charelem="af6df18" />
<statadd type="Ability" Level="1" not-wearing="armor:heavy" value="1" statlink="Dexterity" abilmod="true" charelem="af6df18" />
<statadd type="Ability" Level="1" not-wearing="armor:heavy" value="1" statlink="Intelligence" abilmod="true" charelem="af6df18" />
<statadd type="Defensive" Level="1" wearing="DEFENSIVE:" value="1" charelem="af6df18" />
<statadd type="Shield" Level="16" requires="Shield Proficiency (Light)" value="1" statlink="Light Shield Defense Bonus" charelem="af462a8" />
<statadd type="Armor" Level="16" value="8" charelem="9f7df28" />
<statadd type="Enhancement" Level="16" value="4" charelem="aecad88" />
</Stat>
<Stat value="27" >
<alias name="Fortitude Defense" />
<alias name="Fortitude" />
<statadd Level="1" value="10" charelem="af6df18" />
<statadd Level="1" value="1" statlink="HALF-LEVEL" charelem="af6df18" />
<statadd type="Ability" Level="1" value="1" statlink="Strength" abilmod="true" charelem="af6df18" />
<statadd type="Ability" Level="1" value="1" statlink="Constitution" abilmod="true" charelem="af6df18" />
<statadd type="Class" Level="1" value="1" statlink="Fortitude Defense Class Bonus" charelem="af6df18" />
<statadd Level="8" value="1" statlink="Human Soul" charelem="af47400" />
<statadd type="Enhancement" Level="16" value="2" charelem="ae942c0" />
</Stat>
<Stat value="25" >
<alias name="Reflex Defense" />
<alias name="Reflex" />
<statadd Level="1" value="10" charelem="af6df18" />
<statadd Level="1" value="1" statlink="HALF-LEVEL" charelem="af6df18" />
<statadd type="Ability" Level="1" value="1" statlink="Dexterity" abilmod="true" charelem="af6df18" />
<statadd type="Ability" Level="1" value="1" statlink="Intelligence" abilmod="true" charelem="af6df18" />
<statadd type="Class" Level="1" value="1" statlink="Reflex Defense Class Bonus" charelem="af6df18" />
<statadd Level="8" value="1" statlink="Human Soul" charelem="af47400" />
<statadd type="Shield" Level="16" requires="Shield Proficiency (Light)" value="1" statlink="Light Shield Defense Bonus" charelem="af462a8" />
<statadd type="Enhancement" Level="16" value="2" charelem="ae942c0" />
<statadd Level="16" requires="!Armor Proficiency (Chainmail)" value="-2" charelem="9f7df28" />
</Stat>
<Stat value="27" >
<alias name="Will Defense" />
<alias name="Will" />
<statadd Level="1" value="10" charelem="af6df18" />
<statadd Level="1" value="1" statlink="HALF-LEVEL" charelem="af6df18" />
<statadd type="Ability" Level="1" value="1" statlink="Wisdom" abilmod="true" charelem="af6df18" />
<statadd type="Ability" Level="1" value="1" statlink="Charisma" abilmod="true" charelem="af6df18" />
<statadd type="Class" Level="1" value="1" statlink="Will Defense Class Bonus" charelem="af6df18" />
<statadd Level="8" value="1" statlink="Human Soul" charelem="af47400" />
<statadd type="Enhancement" Level="16" value="2" charelem="ae942c0" />
<statadd type="Armor" Level="16" value="2" charelem="9f7df28" />
</Stat>
<Stat value="3" >
<alias name="Death Saves Count" />
<statadd Level="1" value="3" charelem="af6df18" />
</Stat>
<Stat value="16" >
<alias name="Level" />
<statadd Level="1" value="1" charelem="af6df18" />
<statadd Level="2" value="1" charelem="ae68c88" />
<statadd Level="3" value="1" charelem="adee4e8" />
<statadd Level="4" value="1" charelem="adee7f8" />
<statadd Level="5" value="1" charelem="ad69c60" />
<statadd Level="6" value="1" charelem="ad907a8" />
<statadd Level="7" value="1" charelem="ae2b258" />
<statadd Level="8" value="1" charelem="af475c0" />
<statadd Level="9" value="1" charelem="ae9aff8" />
<statadd Level="10" value="1" charelem="aea7e30" />
<statadd Level="11" value="1" charelem="ae59928" />
<statadd Level="12" value="1" charelem="ae14408" />
<statadd Level="13" value="1" charelem="ae88dc8" />
<statadd Level="14" value="1" charelem="af03680" />
<statadd Level="15" value="1" charelem="af71fe8" />
<statadd Level="16" value="1" charelem="ae330b8" />
</Stat>
<Stat value="109" >
<alias name="Hit Points" />
<statadd type="Level 1" Level="1" value="1" statlink="Constitution" charelem="af6df18" />
<statadd Level="1" value="1" statlink="_LEVEL-ONE-HPS" charelem="af6df18" />
<statadd Level="2" value="1" statlink="_PER-LEVEL-HPS" charelem="ae68c88" />
<statadd Level="3" value="1" statlink="_PER-LEVEL-HPS" charelem="adee4e8" />
<statadd Level="4" value="1" statlink="_PER-LEVEL-HPS" charelem="adee7f8" />
<statadd Level="4" value="1" statlink="Toughness" charelem="adeeca8" />
<statadd Level="5" value="1" statlink="_PER-LEVEL-HPS" charelem="ad69c60" />
<statadd Level="6" value="1" statlink="_PER-LEVEL-HPS" charelem="ad907a8" />
<statadd Level="7" value="1" statlink="_PER-LEVEL-HPS" charelem="ae2b258" />
<statadd Level="8" value="1" statlink="_PER-LEVEL-HPS" charelem="af475c0" />
<statadd Level="9" value="1" statlink="_PER-LEVEL-HPS" charelem="ae9aff8" />
<statadd Level="10" value="1" statlink="_PER-LEVEL-HPS" charelem="aea7e30" />
<statadd Level="11" value="1" statlink="_PER-LEVEL-HPS" charelem="ae59928" />
<statadd Level="12" value="1" statlink="_PER-LEVEL-HPS" charelem="ae14408" />
<statadd Level="13" value="1" statlink="_PER-LEVEL-HPS" charelem="ae88dc8" />
<statadd Level="14" value="1" statlink="_PER-LEVEL-HPS" charelem="af03680" />
<statadd Level="15" value="1" statlink="_PER-LEVEL-HPS" charelem="af71fe8" />
<statadd Level="16" value="1" statlink="_PER-LEVEL-HPS" charelem="ae330b8" />
</Stat>
<Stat value="12" >
<alias name="_LEVEL-ONE-HPS" />
<statadd Level="1" value="12" charelem="ae16c58" />
</Stat>
<Stat value="8" >
<alias name="Healing Surges" />
<statadd type="Level 1" Level="1" value="1" statlink="Constitution" abilmod="true" charelem="af6df18" />
<statadd Level="1" value="7" charelem="ae16c58" />
</Stat>
<Stat value="8" >
<alias name="HALF-LEVEL" />
<statadd Level="2" value="1" charelem="ae68c88" />
<statadd Level="4" value="1" charelem="adee7f8" />
<statadd Level="6" value="1" charelem="ad907a8" />
<statadd Level="8" value="1" charelem="af475c0" />
<statadd Level="10" value="1" charelem="aea7e30" />
<statadd Level="12" value="1" charelem="ae14408" />
<statadd Level="14" value="1" charelem="af03680" />
<statadd Level="16" value="1" charelem="ae330b8" />
</Stat>
<Stat value="1" >
<alias name="Fortitude Defense Class Bonus" />
<statadd Level="1" value="1" charelem="ae16c58" />
</Stat>
<Stat value="0" >
<alias name="Reflex Defense Class Bonus" />
</Stat>
<Stat value="1" >
<alias name="Will Defense Class Bonus" />
<statadd Level="1" value="1" charelem="ae16c58" />
</Stat>
<Stat value="12" >
<alias name="Initiative" />
<statadd Level="1" value="1" statlink="HALF-LEVEL" charelem="af6df18" />
<statadd type="Ability" Level="1" value="1" statlink="Dexterity" abilmod="true" charelem="af6df18" />
<statadd Level="1" value="1" statlink="Initiative Misc" charelem="af6df18" />
</Stat>
<Stat value="2" >
<alias name="Initiative Misc" />
<statadd type="Power" Level="1" value="1" statlink="Combat Leader" charelem="aeb1e78" />
</Stat>
<Stat value="2" >
<alias name="Ring Slots" />
<statadd Level="1" value="2" charelem="af6df18" />
</Stat>
<Stat value="1" >
<alias name="_BaseActionPoints" />
<statadd Level="1" value="1" charelem="af6df18" />
</Stat>
<Stat value="83000" >
<alias name="XP Needed" />
<statadd Level="1" value="1000" charelem="af6df18" />
<statadd Level="2" value="1250" charelem="ae68c88" />
<statadd Level="3" value="1500" charelem="adee4e8" />
<statadd Level="4" value="1750" charelem="adee7f8" />
<statadd Level="5" value="2000" charelem="ad69c60" />
<statadd Level="6" value="2500" charelem="ad907a8" />
<statadd Level="7" value="3000" charelem="ae2b258" />
<statadd Level="8" value="3500" charelem="af475c0" />
<statadd Level="9" value="4000" charelem="ae9aff8" />
<statadd Level="10" value="5500" charelem="aea7e30" />
<statadd Level="11" value="6000" charelem="ae59928" />
<statadd Level="12" value="7000" charelem="ae14408" />
<statadd Level="13" value="8000" charelem="ae88dc8" />
<statadd Level="14" value="10000" charelem="af03680" />
<statadd Level="15" value="12000" charelem="af71fe8" />
<statadd Level="16" value="14000" charelem="ae330b8" />
</Stat>
<Stat value="9" >
<alias name="Acrobatics" />
<statadd Level="1" value="1" statlink="HALF-LEVEL" charelem="af20858" />
<statadd type="Ability" Level="1" value="1" statlink="Dexterity" abilmod="true" charelem="af20858" />
<statadd Level="1" value="1" statlink="Acrobatics Trained" charelem="af20858" />
<statadd Level="1" value="1" statlink="Acrobatics Misc" charelem="af20858" />
<statadd type="Armor Penalty" Level="1" value="1" statlink="Armor Penalty" charelem="af20858" />
</Stat>
<Stat value="0" >
<alias name="Acrobatics Trained" />
</Stat>
<Stat value="0" >
<alias name="Acrobatics Misc" />
</Stat>
<Stat value="-1" >
<alias name="Armor Penalty" />
<statadd type="Chain" Level="16" value="-1" charelem="9f7df28" />
</Stat>
<Stat value="11" >
<alias name="Arcana" />
<statadd Level="1" value="1" statlink="HALF-LEVEL" charelem="af20858" />
<statadd type="Ability" Level="1" value="1" statlink="Intelligence" abilmod="true" charelem="af20858" />
<statadd Level="1" value="1" statlink="Arcana Trained" charelem="af20858" />
<statadd Level="1" value="1" statlink="Arcana Misc" charelem="af20858" />
</Stat>
<Stat value="0" >
<alias name="Arcana Trained" />
</Stat>
<Stat value="0" >
<alias name="Arcana Misc" />
</Stat>
<Stat value="11" >
<alias name="Bluff" />
<statadd Level="1" value="1" statlink="HALF-LEVEL" charelem="af20858" />
<statadd type="Ability" Level="1" value="1" statlink="Charisma" abilmod="true" charelem="af20858" />
<statadd Level="1" value="1" statlink="Bluff Trained" charelem="af20858" />
<statadd Level="1" value="1" statlink="Bluff Misc" charelem="af20858" />
</Stat>
<Stat value="0" >
<alias name="Bluff Trained" />
</Stat>
<Stat value="0" >
<alias name="Bluff Misc" />
</Stat>
<Stat value="11" >
<alias name="Diplomacy" />
<statadd Level="1" value="1" statlink="HALF-LEVEL" charelem="af20858" />
<statadd type="Ability" Level="1" value="1" statlink="Charisma" abilmod="true" charelem="af20858" />
<statadd Level="1" value="1" statlink="Diplomacy Trained" charelem="af20858" />
<statadd Level="1" value="1" statlink="Diplomacy Misc" charelem="af20858" />
</Stat>
<Stat value="0" >
<alias name="Diplomacy Trained" />
</Stat>
<Stat value="0" >
<alias name="Diplomacy Misc" />
</Stat>
<Stat value="8" >
<alias name="Dungeoneering" />
<statadd Level="1" value="1" statlink="HALF-LEVEL" charelem="af20858" />
<statadd type="Ability" Level="1" value="1" statlink="Wisdom" abilmod="true" charelem="af20858" />
<statadd Level="1" value="1" statlink="Dungeoneering Trained" charelem="af20858" />
<statadd Level="1" value="1" statlink="Dungeoneering Misc" charelem="af20858" />
</Stat>
<Stat value="0" >
<alias name="Dungeoneering Trained" />
</Stat>
<Stat value="0" >
<alias name="Dungeoneering Misc" />
</Stat>
<Stat value="15" >
<alias name="Endurance" />
<statadd Level="1" value="1" statlink="HALF-LEVEL" charelem="af20858" />
<statadd type="Ability" Level="1" value="1" statlink="Constitution" abilmod="true" charelem="af20858" />
<statadd Level="1" value="1" statlink="Endurance Trained" charelem="af20858" />
<statadd Level="1" value="1" statlink="Endurance Misc" charelem="af20858" />
<statadd type="Armor Penalty" Level="1" value="1" statlink="Armor Penalty" charelem="af20858" />
</Stat>
<Stat value="5" >
<alias name="Endurance Trained" />
<statadd type="trained" Level="1" value="5" charelem="adedb78" />
</Stat>
<Stat value="2" >
<alias name="Endurance Misc" />
<statadd type="Racial" Level="1" value="2" charelem="adac610" />
</Stat>
<Stat value="13" >
<alias name="Heal" />
<statadd Level="1" value="1" statlink="HALF-LEVEL" charelem="af20858" />
<statadd type="Ability" Level="1" value="1" statlink="Wisdom" abilmod="true" charelem="af20858" />
<statadd Level="1" value="1" statlink="Heal Trained" charelem="af20858" />
<statadd Level="1" value="1" statlink="Heal Misc" charelem="af20858" />
</Stat>
<Stat value="5" >
<alias name="Heal Trained" />
<statadd type="trained" Level="1" value="5" charelem="adef168" />
</Stat>
<Stat value="0" >
<alias name="Heal Misc" />
</Stat>
<Stat value="11" >
<alias name="History" />
<statadd Level="1" value="1" statlink="HALF-LEVEL" charelem="af20858" />
<statadd type="Ability" Level="1" value="1" statlink="Intelligence" abilmod="true" charelem="af20858" />
<statadd Level="1" value="1" statlink="History Trained" charelem="af20858" />
<statadd Level="1" value="1" statlink="History Misc" charelem="af20858" />
</Stat>
<Stat value="0" >
<alias name="History Trained" />
</Stat>
<Stat value="0" >
<alias name="History Misc" />
</Stat>
<Stat value="8" >
<alias name="Insight" />
<statadd Level="1" value="1" statlink="HALF-LEVEL" charelem="af20858" />
<statadd type="Ability" Level="1" value="1" statlink="Wisdom" abilmod="true" charelem="af20858" />
<statadd Level="1" value="1" statlink="Insight Trained" charelem="af20858" />
<statadd Level="1" value="1" statlink="Insight Misc" charelem="af20858" />
</Stat>
<Stat value="0" >
<alias name="Insight Trained" />
</Stat>
<Stat value="0" >
<alias name="Insight Misc" />
</Stat>
<Stat value="18" >
<alias name="Intimidate" />
<statadd Level="1" value="1" statlink="HALF-LEVEL" charelem="af20858" />
<statadd type="Ability" Level="1" value="1" statlink="Charisma" abilmod="true" charelem="af20858" />
<statadd Level="1" value="1" statlink="Intimidate Trained" charelem="af20858" />
<statadd Level="1" value="1" statlink="Intimidate Misc" charelem="af20858" />
</Stat>
<Stat value="5" >
<alias name="Intimidate Trained" />
<statadd type="trained" Level="1" value="5" charelem="aedb560" />
</Stat>
<Stat value="2" >
<alias name="Intimidate Misc" />
<statadd type="Racial" Level="1" value="2" charelem="ae87b80" />
</Stat>
<Stat value="8" >
<alias name="Nature" />
<statadd Level="1" value="1" statlink="HALF-LEVEL" charelem="af20858" />
<statadd type="Ability" Level="1" value="1" statlink="Wisdom" abilmod="true" charelem="af20858" />
<statadd Level="1" value="1" statlink="Nature Trained" charelem="af20858" />
<statadd Level="1" value="1" statlink="Nature Misc" charelem="af20858" />
</Stat>
<Stat value="0" >
<alias name="Nature Trained" />
</Stat>
<Stat value="0" >
<alias name="Nature Misc" />
</Stat>
<Stat value="8" >
<alias name="Perception" />
<statadd Level="1" value="1" statlink="HALF-LEVEL" charelem="af20858" />
<statadd type="Ability" Level="1" value="1" statlink="Wisdom" abilmod="true" charelem="af20858" />
<statadd Level="1" value="1" statlink="Perception Trained" charelem="af20858" />
<statadd Level="1" value="1" statlink="Perception Misc" charelem="af20858" />
</Stat>
<Stat value="0" >
<alias name="Perception Trained" />
</Stat>
<Stat value="0" >
<alias name="Perception Misc" />
</Stat>
<Stat value="11" >
<alias name="Religion" />
<statadd Level="1" value="1" statlink="HALF-LEVEL" charelem="af20858" />
<statadd type="Ability" Level="1" value="1" statlink="Intelligence" abilmod="true" charelem="af20858" />
<statadd Level="1" value="1" statlink="Religion Trained" charelem="af20858" />
<statadd Level="1" value="1" statlink="Religion Misc" charelem="af20858" />
</Stat>
<Stat value="0" >
<alias name="Religion Trained" />
</Stat>
<Stat value="0" >
<alias name="Religion Misc" />
</Stat>
<Stat value="9" >
<alias name="Stealth" />
<statadd Level="1" value="1" statlink="HALF-LEVEL" charelem="af20858" />
<statadd type="Ability" Level="1" value="1" statlink="Dexterity" abilmod="true" charelem="af20858" />
<statadd Level="1" value="1" statlink="Stealth Trained" charelem="af20858" />
<statadd Level="1" value="1" statlink="Stealth Misc" charelem="af20858" />
<statadd type="Armor Penalty" Level="1" value="1" statlink="Armor Penalty" charelem="af20858" />
</Stat>
<Stat value="0" >
<alias name="Stealth Trained" />
</Stat>
<Stat value="0" >
<alias name="Stealth Misc" />
</Stat>
<Stat value="11" >
<alias name="Streetwise" />
<statadd Level="1" value="1" statlink="HALF-LEVEL" charelem="af20858" />
<statadd type="Ability" Level="1" value="1" statlink="Charisma" abilmod="true" charelem="af20858" />
<statadd Level="1" value="1" statlink="Streetwise Trained" charelem="af20858" />
<statadd Level="1" value="1" statlink="Streetwise Misc" charelem="af20858" />
</Stat>
<Stat value="0" >
<alias name="Streetwise Trained" />
</Stat>
<Stat value="0" >
<alias name="Streetwise Misc" />
</Stat>
<Stat value="9" >
<alias name="Thievery" />
<statadd Level="1" value="1" statlink="HALF-LEVEL" charelem="af20858" />
<statadd type="Ability" Level="1" value="1" statlink="Dexterity" abilmod="true" charelem="af20858" />
<statadd Level="1" value="1" statlink="Thievery Trained" charelem="af20858" />
<statadd Level="1" value="1" statlink="Thievery Misc" charelem="af20858" />
<statadd type="Armor Penalty" Level="1" value="1" statlink="Armor Penalty" charelem="af20858" />
</Stat>
<Stat value="0" >
<alias name="Thievery Trained" />
</Stat>
<Stat value="0" >
<alias name="Thievery Misc" />
</Stat>
<Stat value="17" >
<alias name="Athletics" />
<statadd Level="1" value="1" statlink="HALF-LEVEL" charelem="af20858" />
<statadd type="Ability" Level="1" value="1" statlink="Strength" abilmod="true" charelem="af20858" />
<statadd Level="1" value="1" statlink="Athletics Trained" charelem="af20858" />
<statadd Level="1" value="1" statlink="Athletics Misc" charelem="af20858" />
<statadd type="Armor Penalty" Level="1" value="1" statlink="Armor Penalty" charelem="af20858" />
</Stat>
<Stat value="5" >
<alias name="Athletics Trained" />
<statadd type="trained" Level="1" value="5" charelem="adee988" />
</Stat>
<Stat value="0" >
<alias name="Athletics Misc" />
</Stat>
<Stat value="18" >
<alias name="Passive Perception" />
<statadd Level="1" value="1" statlink="Perception" charelem="af20858" />
<statadd Level="1" value="10" charelem="af20858" />
</Stat>
<Stat value="18" >
<alias name="Passive Insight" />
<statadd Level="1" value="1" statlink="Insight" charelem="af20858" />
<statadd Level="1" value="10" charelem="af20858" />
</Stat>
<Stat value="5" >
<alias name="Speed" />
<statadd Level="1" value="6" charelem="adff550" />
<statadd type="Armor" Level="16" value="-1" charelem="9f7df28" />
</Stat>
<Stat value="0" >
<alias name="Average Height" />
<statadd String="5' 5”-6' 2”" Level="1" value="0" />
</Stat>
<Stat value="0" >
<alias name="Average Weight" />
<statadd String="100-200 lb." Level="1" value="0" />
</Stat>
<Stat value="0" >
<alias name="Size" />
<statadd String="Medium" Level="1" value="0" />
</Stat>
<Stat value="2" >
<alias name="Language Count" />
<statadd Level="1" value="1" charelem="adc8e00" />
<statadd Level="1" value="1" charelem="9f78ba8" />
</Stat>
<Stat value="0" >
<alias name="_CLASSNAME" />
<statadd String="ID_FMP_CLASS_8" Level="1" value="0" />
</Stat>
<Stat value="5" >
<alias name="_PER-LEVEL-HPS" />
<statadd Level="1" value="5" charelem="ae16c58" />
</Stat>
<Stat value="2" >
<alias name="Combat Leader" />
<statadd type="Combat Leader" Level="1" value="2" charelem="aeb1e78" />
</Stat>
<Stat value="10" >
<alias name="Toughness" />
<statadd Level="4" value="5" charelem="adeeca8" />
<statadd Level="4" requires="Paragon Tier" value="5" charelem="adeeca8" />
<statadd Level="4" requires="Epic Tier" value="5" charelem="adeeca8" />
</Stat>
<Stat value="1" >
<alias name="Human Soul" />
<statadd Level="8" value="1" charelem="af47400" />
</Stat>
<Stat value="0" >
<alias name="Action Point" />
<statadd String="Knight Commander's Action:When you spend an action point to take an extra action, your allies gain a +1 bonus to all defenses until the start of your next turn. Your allies need to be able to see and hear you to gain this bonus." Level="11" value="0" />
<statadd String="Frantic Recovery:When you spend an action point to gain an extra action, until the end of your turn, you can use your second wind as a minor action." Level="16" value="0" />
<statadd String="Hero's Armor +4:When you spend an action point to take an extra action, you also gain a +2 bonus to all defenses until the end of your next turn." Level="16" value="0" />
</Stat>
<Stat value="0" >
<alias name="ALLY.AC" />
<statadd type="Shield" Level="11" wearing="armor:shield" conditional="if the ally is adjacent to you" value="1" charelem="afa5388" />
</Stat>
<Stat value="0" >
<alias name="damage rolls" />
<statadd Level="16" conditional="when making opportunity attacks" value="1" statlink="Charisma" abilmod="true" charelem="ae0ad60" />
</Stat>
<Stat value="0" >
<alias name="Hybrid Power Points" />
<statadd value="0" />
</Stat>
<Stat value="94" >
<alias name="Weight" />
<statadd value="94" />
</Stat>
<Stat value="1" >
<alias name="Light Shield Defense Bonus" />
<statadd type="Light Shield Defense Bonus" Level="16" value="1" charelem="af462a8" />
</Stat>
<Stat value="1" >
<alias name="Shield Bonus" />
<statadd type="Shield Contribution" Level="16" value="1" charelem="af462a8" />
</Stat>
<Stat value="5" >
<alias name="Viper Belt (heroic tier)" />
<statadd type="Viper Belt (heroic tier)" Level="16" value="5" charelem="adae3c8" />
</Stat>
<Stat value="5" >
<alias name="resist:poison" />
<statadd type="resist" Level="16" value="1" statlink="Viper Belt (heroic tier)" charelem="adae3c8" />
</Stat>
<Stat value="0" >
<alias name="Saving Throws" />
<statadd type="item" Level="16" conditional="against effects that apply the slowed, immobilized, or restrained condition" value="2" charelem="ae00250" />
</Stat>
<Stat value="2" >
<alias name="melee:damage" />
<statadd type="item" Level="16" value="2" charelem="af0c330" />
</Stat>
<Stat value="1" >
<alias name="ID_FMP_ITEM_SET_2 Set Count" />
<statadd type="Dual-Threat Gauntlets" Level="16" value="1" charelem="aeddce0" />
</Stat>
<Stat value="0" >
<alias name="attack rolls" />
<statadd Level="16" requires="!Armor Proficiency (Chainmail)" value="-2" charelem="9f7df28" />
</Stat>
<Stat value="4" >
<alias name="Armor Enhancement Bonus" />
<statadd Level="16" value="4" charelem="aecad88" />
</Stat>
</StatBlock>
<!--
The list of all rules elements the character has, after taking into
account retraining, multiclass power swapping, etc.
-->
<RulesElementTally>
<RulesElement name="1" type="Level" internal-id="ID_INTERNAL_LEVEL_1" charelem="af6df18" legality="rules-legal" />
<RulesElement name="Level1Rules" type="Level1Rules" internal-id="ID_INTERNAL_LEVEL1RULES_LEVEL1RULES" charelem="af208e0" legality="rules-legal" />
<RulesElement name="SkillRules" type="Level1Rules" internal-id="ID_INTERNAL_LEVEL1RULES_SKILLRULES" charelem="af20858" legality="rules-legal" />
<RulesElement name="Acrobatics" type="Skill" internal-id="ID_FMP_SKILL_1" url="http://www.wizards.com/dndinsider/compendium/skill.aspx?id=1" charelem="af207d0" legality="rules-legal" />
<RulesElement name="Arcana" type="Skill" internal-id="ID_FMP_SKILL_2" url="http://www.wizards.com/dndinsider/compendium/skill.aspx?id=2" charelem="aeb7f18" legality="rules-legal" />
<RulesElement name="Bluff" type="Skill" internal-id="ID_FMP_SKILL_3" url="http://www.wizards.com/dndinsider/compendium/skill.aspx?id=3" charelem="af40430" legality="rules-legal" />
<RulesElement name="Diplomacy" type="Skill" internal-id="ID_FMP_SKILL_6" url="http://www.wizards.com/dndinsider/compendium/skill.aspx?id=6" charelem="af75a40" legality="rules-legal" />
<RulesElement name="Dungeoneering" type="Skill" internal-id="ID_FMP_SKILL_7" url="http://www.wizards.com/dndinsider/compendium/skill.aspx?id=7" charelem="af6bc28" legality="rules-legal" />
<RulesElement name="Endurance" type="Skill" internal-id="ID_FMP_SKILL_8" url="http://www.wizards.com/dndinsider/compendium/skill.aspx?id=8" charelem="9f86ce8" legality="rules-legal" />
<RulesElement name="Heal" type="Skill" internal-id="ID_FMP_SKILL_9" url="http://www.wizards.com/dndinsider/compendium/skill.aspx?id=9" charelem="a72cfb8" legality="rules-legal" />
<RulesElement name="History" type="Skill" internal-id="ID_FMP_SKILL_11" url="http://www.wizards.com/dndinsider/compendium/skill.aspx?id=11" charelem="aeb92a0" legality="rules-legal" />
<RulesElement name="Insight" type="Skill" internal-id="ID_FMP_SKILL_13" url="http://www.wizards.com/dndinsider/compendium/skill.aspx?id=13" charelem="add5158" legality="rules-legal" />
<RulesElement name="Intimidate" type="Skill" internal-id="ID_FMP_SKILL_14" url="http://www.wizards.com/dndinsider/compendium/skill.aspx?id=14" charelem="ae22640" legality="rules-legal" />
<RulesElement name="Nature" type="Skill" internal-id="ID_FMP_SKILL_16" url="http://www.wizards.com/dndinsider/compendium/skill.aspx?id=16" charelem="ae6ef78" legality="rules-legal" />
<RulesElement name="Perception" type="Skill" internal-id="ID_FMP_SKILL_17" url="http://www.wizards.com/dndinsider/compendium/skill.aspx?id=17" charelem="af23a00" legality="rules-legal" />
<RulesElement name="Religion" type="Skill" internal-id="ID_FMP_SKILL_18" url="http://www.wizards.com/dndinsider/compendium/skill.aspx?id=18" charelem="aebb368" legality="rules-legal" />
<RulesElement name="Stealth" type="Skill" internal-id="ID_FMP_SKILL_20" url="http://www.wizards.com/dndinsider/compendium/skill.aspx?id=20" charelem="add8a98" legality="rules-legal" />
<RulesElement name="Streetwise" type="Skill" internal-id="ID_FMP_SKILL_21" url="http://www.wizards.com/dndinsider/compendium/skill.aspx?id=21" charelem="ae97220" legality="rules-legal" />
<RulesElement name="Thievery" type="Skill" internal-id="ID_FMP_SKILL_23" url="http://www.wizards.com/dndinsider/compendium/skill.aspx?id=23" charelem="addd608" legality="rules-legal" />
<RulesElement name="Athletics" type="Skill" internal-id="ID_FMP_SKILL_27" url="http://www.wizards.com/dndinsider/compendium/skill.aspx?id=27" charelem="ad8df98" legality="rules-legal" />
<RulesElement name="Heroic" type="Tier" internal-id="ID_INTERNAL_TIER_HEROIC" charelem="aef15f0" legality="rules-legal" />
<RulesElement name="Melee Basic Attack" type="Power" internal-id="ID_INTERNAL_POWER_MELEE_BASIC_ATTACK" charelem="aeba600" legality="rules-legal" />
<RulesElement name="Ranged Basic Attack" type="Power" internal-id="ID_INTERNAL_POWER_RANGED_BASIC_ATTACK" charelem="ae63888" legality="rules-legal" />
<RulesElement name="DetailsRules" type="Level1Rules" internal-id="ID_INTERNAL_LEVEL1RULES_DETAILSRULES" charelem="adc7b60" legality="rules-legal" />
<RulesElement name="Male" type="Gender" internal-id="ID_INTERNAL_GENDER_MALE" charelem="af23978" legality="rules-legal" />
<RulesElement name="Good" type="Alignment" internal-id="ID_FMP_ALIGNMENT_3" charelem="ad8ab98" legality="rules-legal" />
<RulesElement name="Expansion1" type="Level1Rules" internal-id="ID_INTERNAL_LEVEL1RULES_EXPANSION1" charelem="af72228" legality="rules-legal" />
<RulesElement name="Gritty Sergeant" type="Background" internal-id="ID_FMP_BACKGROUND_49" charelem="aefc718" legality="rules-legal" >
<specific name="Short Description" > Don't call me ‘sir.' I work for a living, soldier! I was picking boys like you off the turf back when your mama was picking daisies in the field. Your papa, too. </specific>
</RulesElement>
<RulesElement name="Background Benefit" type="Internal" internal-id="ID_INTERNAL_INTERNAL_BACKGROUND_BENEFIT" charelem="ae226c8" legality="rules-legal" />
<RulesElement name="Expansion2" type="Level1Rules" internal-id="ID_INTERNAL_LEVEL1RULES_EXPANSION2" charelem="ad72658" legality="rules-legal" />
<RulesElement name="Expansion3" type="Level1Rules" internal-id="ID_INTERNAL_LEVEL1RULES_EXPANSION3" charelem="aef86a0" legality="rules-legal" />
<RulesElement name="Expansion4" type="Level1Rules" internal-id="ID_INTERNAL_LEVEL1RULES_EXPANSION4" charelem="af6fce8" legality="rules-legal" />
<RulesElement name="Expansion5" type="Level1Rules" internal-id="ID_INTERNAL_LEVEL1RULES_EXPANSION5" charelem="aeee470" legality="rules-legal" />
<RulesElement name="Revenant" type="Race" internal-id="ID_FMP_RACE_47" url="http://www.wizards.com/dndinsider/compendium/race.aspx?id=47" charelem="adff550" legality="rules-legal" >
<specific name="Short Description" > Revenants are unfulfilled souls sent back to the world by the Raven Queen. </specific>
</RulesElement>
<RulesElement name="Revenant" type="Grants" internal-id="ID_INTERNAL_GRANTS_REVENANT" charelem="ae6d098" legality="rules-legal" />
<RulesElement name="Medium" type="Size" internal-id="ID_INTERNAL_SIZE_MEDIUM" charelem="af226c0" legality="rules-legal" />
<RulesElement name="Low-light" type="Vision" internal-id="ID_INTERNAL_VISION_LOW-LIGHT" charelem="76a3088" legality="rules-legal" />
<RulesElement name="Dark Reaping" type="Racial Trait" internal-id="ID_FMP_RACIAL_TRAIT_1870" charelem="aef6950" legality="rules-legal" >
<specific name="Short Description" > Gain dark reaping as an encounter power. </specific>
</RulesElement>
<RulesElement name="Dark Reaping" type="Power" internal-id="ID_FMP_POWER_8278" url="http://www.wizards.com/dndinsider/compendium/power.aspx?id=8278" charelem="af137d0" legality="rules-legal" />
<RulesElement name="Undead" type="Racial Trait" internal-id="ID_FMP_RACIAL_TRAIT_1866" charelem="af5ad80" legality="rules-legal" >
<specific name="Short Description" > You are considered to be both a living creature, and an undead creature for effects that relate to that keyword. </specific>
</RulesElement>
<RulesElement name="Past life" type="Racial Trait" internal-id="ID_FMP_RACIAL_TRAIT_1867" charelem="ad9c3e8" legality="rules-legal" >
<specific name="Short Description" > Choose one other race; its feats, paragon paths, and epic destinies are available to you if all other prerequisites are met. </specific>
</RulesElement>
<RulesElement name="Human" type="CountsAsRace" internal-id="ID_INTERNAL_COUNTSASRACE_HUMAN" charelem="af28bf8" legality="rules-legal" />
<RulesElement name="Unnatural Vitality" type="Racial Trait" internal-id="ID_FMP_RACIAL_TRAIT_1868" charelem="add4770" legality="rules-legal" >
<specific name="Short Description" > At 0 or fewer hp, may choose to remain conscious & take 1 standard action until you attempt your first death saving throw. </specific>
</RulesElement>
<RulesElement name="Constitution" type="Race Ability Bonus" internal-id="ID_INTERNAL_RACE_ABILITY_BONUS_CONSTITUTION" charelem="af46f50" legality="rules-legal" />
<RulesElement name="Dexterity" type="Race Ability Bonus" internal-id="ID_INTERNAL_RACE_ABILITY_BONUS_DEXTERITY" charelem="ae50640" legality="rules-legal" />
<RulesElement name="Common" type="Language" internal-id="ID_FMP_LANGUAGE_1" charelem="adc8e00" legality="rules-legal" />
<RulesElement name="Endurance Bonus" type="Racial Trait" internal-id="ID_INTERNAL_RACIAL_TRAIT_ENDURANCE_BONUS" charelem="adac610" legality="rules-legal" />
<RulesElement name="Intimidate Bonus" type="Racial Trait" internal-id="ID_INTERNAL_RACIAL_TRAIT_INTIMIDATE_BONUS" charelem="ae87b80" legality="rules-legal" />
<RulesElement name="Elven" type="Language" internal-id="ID_FMP_LANGUAGE_4" charelem="9f78ba8" legality="rules-legal" />
<RulesElement name="Warlord" type="Class" internal-id="ID_FMP_CLASS_8" url="http://www.wizards.com/dndinsider/compendium/class.aspx?id=8" charelem="ae16c58" legality="rules-legal" >
<specific name="Short Description" > You stand toe to toe with your enemies, issuing commands that maximize your allies' prowess. </specific>
</RulesElement>
<RulesElement name="Warlord" type="Grants" internal-id="ID_INTERNAL_GRANTS_WARLORD" charelem="aec8430" legality="rules-legal" />
<RulesElement name="Leader" type="Role" internal-id="ID_FMP_ROLE_2" charelem="ae42518" legality="rules-legal" />
<RulesElement name="Martial" type="Power Source" internal-id="ID_FMP_POWER_SOURCE_1" charelem="ad81530" legality="rules-legal" />
<RulesElement name="Armor Proficiency (Cloth)" type="Proficiency" internal-id="ID_INTERNAL_PROFICIENCY_ARMOR_PROFICIENCY_(CLOTH)" charelem="adf12a8" legality="rules-legal" />
<RulesElement name="Armor Proficiency (Leather)" type="Proficiency" internal-id="ID_INTERNAL_PROFICIENCY_ARMOR_PROFICIENCY_(LEATHER)" charelem="af1dc78" legality="rules-legal" />
<RulesElement name="Armor Proficiency (Hide)" type="Proficiency" internal-id="ID_INTERNAL_PROFICIENCY_ARMOR_PROFICIENCY_(HIDE)" charelem="af72a10" legality="rules-legal" />
<RulesElement name="Armor Proficiency (Chainmail)" type="Proficiency" internal-id="ID_INTERNAL_PROFICIENCY_ARMOR_PROFICIENCY_(CHAINMAIL)" charelem="ae427a8" legality="rules-legal" />
<RulesElement name="Shield Proficiency (Light)" type="Proficiency" internal-id="ID_INTERNAL_PROFICIENCY_SHIELD_PROFICIENCY_(LIGHT)" charelem="af080a0" legality="rules-legal" />
<RulesElement name="Simple Melee" type="Proficiency" internal-id="ID_INTERNAL_PROFICIENCY_SIMPLE_MELEE" charelem="ae0b500" legality="rules-legal" />
<RulesElement name="Weapon Proficiency (Club)" type="Proficiency" internal-id="ID_INTERNAL_PROFICIENCY_WEAPON_PROFICIENCY_(CLUB)" charelem="ada32b0" legality="rules-legal" />
<RulesElement name="Weapon Proficiency (Dagger)" type="Proficiency" internal-id="ID_INTERNAL_PROFICIENCY_WEAPON_PROFICIENCY_(DAGGER)" charelem="ad9d788" legality="rules-legal" />
<RulesElement name="Weapon Proficiency (Javelin)" type="Proficiency" internal-id="ID_INTERNAL_PROFICIENCY_WEAPON_PROFICIENCY_(JAVELIN)" charelem="ad788d0" legality="rules-legal" />
<RulesElement name="Weapon Proficiency (Mace)" type="Proficiency" internal-id="ID_INTERNAL_PROFICIENCY_WEAPON_PROFICIENCY_(MACE)" charelem="adc5108" legality="rules-legal" />
<RulesElement name="Weapon Proficiency (Sickle)" type="Proficiency" internal-id="ID_INTERNAL_PROFICIENCY_WEAPON_PROFICIENCY_(SICKLE)" charelem="af21ca0" legality="rules-legal" />
<RulesElement name="Weapon Proficiency (Spear)" type="Proficiency" internal-id="ID_INTERNAL_PROFICIENCY_WEAPON_PROFICIENCY_(SPEAR)" charelem="aee4670" legality="rules-legal" />
<RulesElement name="Weapon Proficiency (Greatclub)" type="Proficiency" internal-id="ID_INTERNAL_PROFICIENCY_WEAPON_PROFICIENCY_(GREATCLUB)" charelem="ad85ec0" legality="rules-legal" />
<RulesElement name="Weapon Proficiency (Morningstar)" type="Proficiency" internal-id="ID_INTERNAL_PROFICIENCY_WEAPON_PROFICIENCY_(MORNINGSTAR)" charelem="adc73a8" legality="rules-legal" />
<RulesElement name="Weapon Proficiency (Quarterstaff)" type="Proficiency" internal-id="ID_INTERNAL_PROFICIENCY_WEAPON_PROFICIENCY_(QUARTERSTAFF)" charelem="af693e8" legality="rules-legal" />
<RulesElement name="Weapon Proficiency (Scythe)" type="Proficiency" internal-id="ID_INTERNAL_PROFICIENCY_WEAPON_PROFICIENCY_(SCYTHE)" charelem="af69468" legality="rules-legal" />
<RulesElement name="Weapon Proficiency (Spiked gauntlet)" type="Proficiency" internal-id="ID_INTERNAL_PROFICIENCY_WEAPON_PROFICIENCY_(SPIKED_GAUNTLET)" charelem="af3fdb8" legality="rules-legal" />
<RulesElement name="Weapon Proficiency (Claw Fighter Claw)" type="Proficiency" internal-id="ID_INTERNAL_PROFICIENCY_WEAPON_PROFICIENCY_(CLAW_FIGHTER_CLAW)" charelem="ae64078" legality="rules-legal" />
<RulesElement name="Weapon Proficiency (Shadowblade)" type="Proficiency" internal-id="ID_INTERNAL_PROFICIENCY_WEAPON_PROFICIENCY_(SHADOWBLADE)" charelem="aed37c0" legality="rules-legal" />
<RulesElement name="Weapon Proficiency (Climbing Claw)" type="Proficiency" internal-id="ID_INTERNAL_PROFICIENCY_WEAPON_PROFICIENCY_(CLIMBING_CLAW)" charelem="af5fb30" legality="rules-legal" />
<RulesElement name="Weapon Proficiency (Dragontooth Shield (heroic tier))" type="Proficiency" internal-id="ID_INTERNAL_PROFICIENCY_WEAPON_PROFICIENCY_(DRAGONTOOTH_SHIELD_(HEROIC_TIER))" charelem="af69558" legality="rules-legal" />
<RulesElement name="Weapon Proficiency (Fighting Shield (heroic tier))" type="Proficiency" internal-id="ID_INTERNAL_PROFICIENCY_WEAPON_PROFICIENCY_(FIGHTING_SHIELD_(HEROIC_TIER))" charelem="adcc420" legality="rules-legal" />
<RulesElement name="Weapon Proficiency (Soul Shield (paragon tier))" type="Proficiency" internal-id="ID_INTERNAL_PROFICIENCY_WEAPON_PROFICIENCY_(SOUL_SHIELD_(PARAGON_TIER))" charelem="adbf6e8" legality="rules-legal" />
<RulesElement name="Weapon Proficiency (Sun Shield (paragon tier))" type="Proficiency" internal-id="ID_INTERNAL_PROFICIENCY_WEAPON_PROFICIENCY_(SUN_SHIELD_(PARAGON_TIER))" charelem="ae3f580" legality="rules-legal" />
<RulesElement name="Weapon Proficiency (Rod of Seven Parts (Weapon))" type="Proficiency" internal-id="ID_INTERNAL_PROFICIENCY_WEAPON_PROFICIENCY_(ROD_OF_SEVEN_PARTS_(WEAPON))" charelem="aeb16b0" legality="rules-legal" />
<RulesElement name="Military Melee" type="Proficiency" internal-id="ID_INTERNAL_PROFICIENCY_MILITARY_MELEE" charelem="ad80cf8" legality="rules-legal" />
<RulesElement name="Weapon Proficiency (Battleaxe)" type="Proficiency" internal-id="ID_INTERNAL_PROFICIENCY_WEAPON_PROFICIENCY_(BATTLEAXE)" charelem="9ce2fb8" legality="rules-legal" />
<RulesElement name="Weapon Proficiency (Handaxe)" type="Proficiency" internal-id="ID_INTERNAL_PROFICIENCY_WEAPON_PROFICIENCY_(HANDAXE)" charelem="ae4afe8" legality="rules-legal" />
<RulesElement name="Weapon Proficiency (Flail)" type="Proficiency" internal-id="ID_INTERNAL_PROFICIENCY_WEAPON_PROFICIENCY_(FLAIL)" charelem="adb7558" legality="rules-legal" />
<RulesElement name="Weapon Proficiency (Throwing hammer)" type="Proficiency" internal-id="ID_INTERNAL_PROFICIENCY_WEAPON_PROFICIENCY_(THROWING_HAMMER)" charelem="ae0b050" legality="rules-legal" />
<RulesElement name="Weapon Proficiency (Warhammer)" type="Proficiency" internal-id="ID_INTERNAL_PROFICIENCY_WEAPON_PROFICIENCY_(WARHAMMER)" charelem="adde858" legality="rules-legal" />
<RulesElement name="Weapon Proficiency (War Pick)" type="Proficiency" internal-id="ID_INTERNAL_PROFICIENCY_WEAPON_PROFICIENCY_(WAR_PICK)" charelem="aec6d08" legality="rules-legal" />
<RulesElement name="Weapon Proficiency (Scimitar)" type="Proficiency" internal-id="ID_INTERNAL_PROFICIENCY_WEAPON_PROFICIENCY_(SCIMITAR)" charelem="ae56620" legality="rules-legal" />
<RulesElement name="Weapon Proficiency (Longsword)" type="Proficiency" internal-id="ID_INTERNAL_PROFICIENCY_WEAPON_PROFICIENCY_(LONGSWORD)" charelem="aeb5858" legality="rules-legal" />
<RulesElement name="Weapon Proficiency (Short sword)" type="Proficiency" internal-id="ID_INTERNAL_PROFICIENCY_WEAPON_PROFICIENCY_(SHORT_SWORD)" charelem="ae76340" legality="rules-legal" />
<RulesElement name="Weapon Proficiency (Greataxe)" type="Proficiency" internal-id="ID_INTERNAL_PROFICIENCY_WEAPON_PROFICIENCY_(GREATAXE)" charelem="af6c350" legality="rules-legal" />
<RulesElement name="Weapon Proficiency (Heavy flail)" type="Proficiency" internal-id="ID_INTERNAL_PROFICIENCY_WEAPON_PROFICIENCY_(HEAVY_FLAIL)" charelem="aec6d90" legality="rules-legal" />
<RulesElement name="Weapon Proficiency (Glaive)" type="Proficiency" internal-id="ID_INTERNAL_PROFICIENCY_WEAPON_PROFICIENCY_(GLAIVE)" charelem="af55f30" legality="rules-legal" />
<RulesElement name="Weapon Proficiency (Halberd)" type="Proficiency" internal-id="ID_INTERNAL_PROFICIENCY_WEAPON_PROFICIENCY_(HALBERD)" charelem="addee50" legality="rules-legal" />
<RulesElement name="Weapon Proficiency (Maul)" type="Proficiency" internal-id="ID_INTERNAL_PROFICIENCY_WEAPON_PROFICIENCY_(MAUL)" charelem="add41c0" legality="rules-legal" />
<RulesElement name="Weapon Proficiency (Longspear)" type="Proficiency" internal-id="ID_INTERNAL_PROFICIENCY_WEAPON_PROFICIENCY_(LONGSPEAR)" charelem="ae31628" legality="rules-legal" />
<RulesElement name="Weapon Proficiency (Greatsword)" type="Proficiency" internal-id="ID_INTERNAL_PROFICIENCY_WEAPON_PROFICIENCY_(GREATSWORD)" charelem="af6deb0" legality="rules-legal" />
<RulesElement name="Weapon Proficiency (Rapier)" type="Proficiency" internal-id="ID_INTERNAL_PROFICIENCY_WEAPON_PROFICIENCY_(RAPIER)" charelem="af6d198" legality="rules-legal" />
<RulesElement name="Weapon Proficiency (Falchion)" type="Proficiency" internal-id="ID_INTERNAL_PROFICIENCY_WEAPON_PROFICIENCY_(FALCHION)" charelem="af67730" legality="rules-legal" />
<RulesElement name="Weapon Proficiency (Broadsword)" type="Proficiency" internal-id="ID_INTERNAL_PROFICIENCY_WEAPON_PROFICIENCY_(BROADSWORD)" charelem="af6c0e8" legality="rules-legal" />
<RulesElement name="Weapon Proficiency (Khopesh)" type="Proficiency" internal-id="ID_INTERNAL_PROFICIENCY_WEAPON_PROFICIENCY_(KHOPESH)" charelem="af5faa8" legality="rules-legal" />
<RulesElement name="Weapon Proficiency (Light war pick)" type="Proficiency" internal-id="ID_INTERNAL_PROFICIENCY_WEAPON_PROFICIENCY_(LIGHT_WAR_PICK)" charelem="af73040" legality="rules-legal" />
<RulesElement name="Weapon Proficiency (Scourge)" type="Proficiency" internal-id="ID_INTERNAL_PROFICIENCY_WEAPON_PROFICIENCY_(SCOURGE)" charelem="af1c7a0" legality="rules-legal" />
<RulesElement name="Weapon Proficiency (Trident)" type="Proficiency" internal-id="ID_INTERNAL_PROFICIENCY_WEAPON_PROFICIENCY_(TRIDENT)" charelem="af72fd8" legality="rules-legal" />
<RulesElement name="Weapon Proficiency (Heavy war pick)" type="Proficiency" internal-id="ID_INTERNAL_PROFICIENCY_WEAPON_PROFICIENCY_(HEAVY_WAR_PICK)" charelem="af3f090" legality="rules-legal" />
<RulesElement name="Weapon Proficiency (Feral Armor Claw)" type="Proficiency" internal-id="ID_INTERNAL_PROFICIENCY_WEAPON_PROFICIENCY_(FERAL_ARMOR_CLAW)" charelem="af1c8f8" legality="rules-legal" />
<RulesElement name="Simple Ranged" type="Proficiency" internal-id="ID_INTERNAL_PROFICIENCY_SIMPLE_RANGED" charelem="af1c960" legality="rules-legal" />
<RulesElement name="Weapon Proficiency (Hand Crossbow)" type="Proficiency" internal-id="ID_INTERNAL_PROFICIENCY_WEAPON_PROFICIENCY_(HAND_CROSSBOW)" charelem="aeeecb8" legality="rules-legal" />
<RulesElement name="Weapon Proficiency (Sling)" type="Proficiency" internal-id="ID_INTERNAL_PROFICIENCY_WEAPON_PROFICIENCY_(SLING)" charelem="af1c9e8" legality="rules-legal" />
<RulesElement name="Weapon Proficiency (Crossbow)" type="Proficiency" internal-id="ID_INTERNAL_PROFICIENCY_WEAPON_PROFICIENCY_(CROSSBOW)" charelem="af0d438" legality="rules-legal" />
<RulesElement name="Weapon Proficiency (Repeating crossbow)" type="Proficiency" internal-id="ID_INTERNAL_PROFICIENCY_WEAPON_PROFICIENCY_(REPEATING_CROSSBOW)" charelem="af3e138" legality="rules-legal" />
<RulesElement name="Combat Leader" type="Class Feature" internal-id="ID_FMP_CLASS_FEATURE_443" charelem="aeb1e78" legality="rules-legal" >
<specific name="Short Description" > You, and allies within 10 that see and hear you, gain +2 to initiative. </specific>
</RulesElement>
<RulesElement name="Commanding Presence" type="Class Feature" internal-id="ID_FMP_CLASS_FEATURE_316" charelem="af6b5f0" legality="rules-legal" >
<specific name="Short Description" > Choose a Presence benefit; provides bonuses with certain powers. </specific>
</RulesElement>
<RulesElement name="Resourceful Presence" type="Class Feature" internal-id="ID_FMP_CLASS_FEATURE_1033" charelem="af6dc90" legality="rules-legal" >
<specific name="Short Description" > Ally who sees you and spends action point to attack gets damage bonus (1/2 level + Int mod); if attack hits no targets, ally gains temp hp (1/2/ level + Cha mod) </specific>
</RulesElement>
<RulesElement name="Inspiring Word" type="Class Feature" internal-id="ID_FMP_CLASS_FEATURE_317" charelem="aeacaf8" legality="rules-legal" >
<specific name="Short Description" > Use inspiring word as an encounter (special) power, minor action. </specific>
</RulesElement>
<RulesElement name="Inspiring Word" type="Power" internal-id="ID_FMP_POWER_1590" url="http://www.wizards.com/dndinsider/compendium/power.aspx?id=1590" charelem="afa6d20" legality="rules-legal" />
<RulesElement name="Warlord Implements" type="Grants" internal-id="ID_INTERNAL_GRANTS_WARLORD_IMPLEMENTS" charelem="af588b0" legality="rules-legal" />
<RulesElement name="Opening Shove" type="Power" internal-id="ID_FMP_POWER_4542" url="http://www.wizards.com/dndinsider/compendium/power.aspx?id=4542" charelem="adc0ac0" legality="rules-legal" />
<RulesElement name="Direct the Strike" type="Power" internal-id="ID_FMP_POWER_10888" url="http://www.wizards.com/dndinsider/compendium/power.aspx?id=10888" charelem="aec6150" legality="rules-legal" />
<RulesElement name="Inspiring Warlord" type="Build" internal-id="ID_FMP_BUILD_12" charelem="aec6690" legality="rules-legal" />
<RulesElement name="Inspiring Warlord" type="Build Suggestions" internal-id="ID_INTERNAL_BUILD_SUGGESTIONS_INSPIRING_WARLORD" charelem="afba7d0" legality="rules-legal" />
<RulesElement name="Heal" type="Skill Training" internal-id="ID_INTERNAL_SKILL_TRAINING_HEAL" charelem="adef168" legality="rules-legal" />
<RulesElement name="Intimidate" type="Skill Training" internal-id="ID_INTERNAL_SKILL_TRAINING_INTIMIDATE" charelem="aedb560" legality="rules-legal" />
<RulesElement name="Athletics" type="Skill Training" internal-id="ID_INTERNAL_SKILL_TRAINING_ATHLETICS" charelem="adee988" legality="rules-legal" />
<RulesElement name="Endurance" type="Skill Training" internal-id="ID_INTERNAL_SKILL_TRAINING_ENDURANCE" charelem="adedb78" legality="rules-legal" />
<RulesElement name="Saving Inspiration" type="Feat" internal-id="ID_FMP_FEAT_814" url="http://www.wizards.com/dndinsider/compendium/feat.aspx?id=814" charelem="adeee38" legality="rules-legal" >
<specific name="Short Description" > Ally gains saving throw with inspiring word </specific>
</RulesElement>
<RulesElement name="2" type="Level" internal-id="ID_INTERNAL_LEVEL_2" charelem="ae68c88" legality="rules-legal" />
<RulesElement name="Grit and Spittle" type="Power" internal-id="ID_FMP_POWER_12163" url="http://www.wizards.com/dndinsider/compendium/power.aspx?id=12163" charelem="adeeb18" legality="rules-legal" />
<RulesElement name="3" type="Level" internal-id="ID_INTERNAL_LEVEL_3" charelem="adee4e8" legality="rules-legal" />
<RulesElement name="No Gambit Is Wasted" type="Power" internal-id="ID_FMP_POWER_10923" url="http://www.wizards.com/dndinsider/compendium/power.aspx?id=10923" charelem="adc3488" legality="rules-legal" />
<RulesElement name="4" type="Level" internal-id="ID_INTERNAL_LEVEL_4" charelem="adee7f8" legality="rules-legal" />
<RulesElement name="Toughness" type="Feat" internal-id="ID_FMP_FEAT_171" url="http://www.wizards.com/dndinsider/compendium/feat.aspx?id=171" charelem="adeeca8" legality="rules-legal" >
<specific name="Short Description" > Gain 5 additional hit points, 10 at 11th, 15 at 21st </specific>
</RulesElement>
<RulesElement name="Strength" type="Ability Increase (Level 4)" internal-id="ID_INTERNAL_ABILITY_INCREASE_(LEVEL_4)_STRENGTH" charelem="adc2de0" legality="rules-legal" />
<RulesElement name="Charisma" type="Ability Increase (Level 4)" internal-id="ID_INTERNAL_ABILITY_INCREASE_(LEVEL_4)_CHARISMA" charelem="aded9e8" legality="rules-legal" />
<RulesElement name="5" type="Level" internal-id="ID_INTERNAL_LEVEL_5" charelem="ad69c60" legality="rules-legal" />
<RulesElement name="Staggering Spin" type="Power" internal-id="ID_FMP_POWER_2534" url="http://www.wizards.com/dndinsider/compendium/power.aspx?id=2534" charelem="ad9bf40" legality="rules-legal" />
<RulesElement name="6" type="Level" internal-id="ID_INTERNAL_LEVEL_6" charelem="ad907a8" legality="rules-legal" />
<RulesElement name="Lend Might" type="Feat" internal-id="ID_FMP_FEAT_797" url="http://www.wizards.com/dndinsider/compendium/feat.aspx?id=797" charelem="ae1ec88" legality="rules-legal" >
<specific name="Short Description" > +1 to attack rolls of attacks you grant </specific>
</RulesElement>
<RulesElement name="Tactical Supervision" type="Power" internal-id="ID_FMP_POWER_4565" url="http://www.wizards.com/dndinsider/compendium/power.aspx?id=4565" charelem="ae1a8d8" legality="rules-legal" />
<RulesElement name="7" type="Level" internal-id="ID_INTERNAL_LEVEL_7" charelem="ae2b258" legality="rules-legal" />
<RulesElement name="Fierce Reply" type="Power" internal-id="ID_FMP_POWER_10935" url="http://www.wizards.com/dndinsider/compendium/power.aspx?id=10935" charelem="af41528" legality="rules-legal" />
<RulesElement name="8" type="Level" internal-id="ID_INTERNAL_LEVEL_8" charelem="af475c0" legality="rules-legal" />
<RulesElement name="Human Soul" type="Feat" internal-id="ID_FMP_FEAT_1660" url="http://www.wizards.com/dndinsider/compendium/feat.aspx?id=1660" charelem="af47400" legality="rules-legal" />
<RulesElement name="Strength" type="Ability Increase (Level 8)" internal-id="ID_INTERNAL_ABILITY_INCREASE_(LEVEL_8)_STRENGTH" charelem="afa7f70" legality="rules-legal" />
<RulesElement name="Charisma" type="Ability Increase (Level 8)" internal-id="ID_INTERNAL_ABILITY_INCREASE_(LEVEL_8)_CHARISMA" charelem="afa7d30" legality="rules-legal" />
<RulesElement name="9" type="Level" internal-id="ID_INTERNAL_LEVEL_9" charelem="ae9aff8" legality="rules-legal" />
<RulesElement name="Coordinated Assault" type="Power" internal-id="ID_FMP_POWER_11614" url="http://www.wizards.com/dndinsider/compendium/power.aspx?id=11614" charelem="aed4740" legality="rules-legal" />
<RulesElement name="Coordinated Assault Attack" type="Power" internal-id="ID_FMP_POWER_11615" url="http://www.wizards.com/dndinsider/compendium/power.aspx?id=11615" charelem="ae8c838" legality="rules-legal" />
<RulesElement name="10" type="Level" internal-id="ID_INTERNAL_LEVEL_10" charelem="aea7e30" legality="rules-legal" />
<RulesElement name="Defensive Rally" type="Power" internal-id="ID_FMP_POWER_1112" url="http://www.wizards.com/dndinsider/compendium/power.aspx?id=1112" charelem="ae87448" legality="rules-legal" />
<RulesElement name="11" type="Level" internal-id="ID_INTERNAL_LEVEL_11" charelem="ae59928" legality="rules-legal" />
<RulesElement name="Paragon" type="Tier" internal-id="ID_INTERNAL_TIER_PARAGON" charelem="aeba9c8" legality="rules-legal" />
<RulesElement name="Vexing Flanker" type="Feat" internal-id="ID_FMP_FEAT_535" url="http://www.wizards.com/dndinsider/compendium/feat.aspx?id=535" charelem="ad96080" legality="rules-legal" >
<specific name="Short Description" > Targets you flank grant combat advantage to your allies </specific>
</RulesElement>
<RulesElement name="Knight Commander" type="Paragon Path" internal-id="ID_FMP_PARAGON_PATH_47" url="http://www.wizards.com/dndinsider/compendium/paragonpath.aspx?id=47" charelem="adc5ec0" legality="rules-legal" />
<RulesElement name="Honor and Glory" type="Class Feature" internal-id="ID_FMP_CLASS_FEATURE_493" charelem="ae449c8" legality="rules-legal" >
<specific name="Short Description" > Adjacent allies get +2 to attacks </specific>
</RulesElement>
<RulesElement name="Knight Commander's Action" type="Class Feature" internal-id="ID_FMP_CLASS_FEATURE_670" charelem="ae07a18" legality="rules-legal" >
<specific name="Short Description" > When you spend action point to take action, allies get +1 to defenses unti start of your next turn if they can see and hear you </specific>
</RulesElement>
<RulesElement name="Slash and Press" type="Power" internal-id="ID_FMP_POWER_1671" url="http://www.wizards.com/dndinsider/compendium/power.aspx?id=1671" charelem="af295c0" legality="rules-legal" />
<RulesElement name="Phalanx Warrior" type="Feat" internal-id="ID_FMP_FEAT_858" url="http://www.wizards.com/dndinsider/compendium/feat.aspx?id=858" charelem="afa5388" replaces="addd0b8" legality="rules-legal" >
<specific name="Short Description" > Adjacent allies gain +1 AC when you wield shield </specific>
</RulesElement>
<RulesElement name="12" type="Level" internal-id="ID_INTERNAL_LEVEL_12" charelem="ae14408" legality="rules-legal" />
<RulesElement name="Versatile Word" type="Feat" internal-id="ID_FMP_FEAT_2068" url="http://www.wizards.com/dndinsider/compendium/feat.aspx?id=2068" charelem="af406c0" legality="rules-legal" >
<specific name="Short Description" > Inspiring word target can shift or gain bonus to AC </specific>
</RulesElement>
<RulesElement name="Lend Strength" type="Feat" internal-id="ID_FMP_FEAT_2436" url="http://www.wizards.com/dndinsider/compendium/feat.aspx?id=2436" charelem="af77360" replaces="ad930e8" legality="rules-legal" >
<specific name="Short Description" > Ally gains +2 damage with basic attack you grant </specific>
</RulesElement>
<RulesElement name="Break Their Nerve" type="Power" internal-id="ID_FMP_POWER_1670" url="http://www.wizards.com/dndinsider/compendium/power.aspx?id=1670" charelem="af022e8" legality="rules-legal" />
<RulesElement name="13" type="Level" internal-id="ID_INTERNAL_LEVEL_13" charelem="ae88dc8" legality="rules-legal" />
<RulesElement name="Unified in Blood" type="Power" internal-id="ID_FMP_POWER_2540" url="http://www.wizards.com/dndinsider/compendium/power.aspx?id=2540" charelem="ae96540" replaces="adb87e0" legality="rules-legal" />
<RulesElement name="14" type="Level" internal-id="ID_INTERNAL_LEVEL_14" charelem="af03680" legality="rules-legal" />
<RulesElement name="Directing Inspiration" type="Feat" internal-id="ID_FMP_FEAT_2407" url="http://www.wizards.com/dndinsider/compendium/feat.aspx?id=2407" charelem="ae3d018" legality="rules-legal" >
<specific name="Short Description" > Target of inspiring word gains +1 attack or defense for ranged and area attacks </specific>
</RulesElement>
<RulesElement name="Intelligence" type="Ability Increase (Level 14)" internal-id="ID_INTERNAL_ABILITY_INCREASE_(LEVEL_14)_INTELLIGENCE" charelem="af51a10" legality="rules-legal" />
<RulesElement name="Charisma" type="Ability Increase (Level 14)" internal-id="ID_INTERNAL_ABILITY_INCREASE_(LEVEL_14)_CHARISMA" charelem="ae703e8" legality="rules-legal" />
<RulesElement name="15" type="Level" internal-id="ID_INTERNAL_LEVEL_15" charelem="af71fe8" legality="rules-legal" />
<RulesElement name="Call to Action" type="Power" internal-id="ID_FMP_POWER_11729" url="http://www.wizards.com/dndinsider/compendium/power.aspx?id=11729" charelem="af57430" replaces="aeb5780" legality="rules-legal" />
<RulesElement name="16" type="Level" internal-id="ID_INTERNAL_LEVEL_16" charelem="ae330b8" legality="rules-legal" />
<RulesElement name="Frantic Recovery" type="Feat" internal-id="ID_FMP_FEAT_2570" url="http://www.wizards.com/dndinsider/compendium/feat.aspx?id=2570" charelem="afa00d0" legality="rules-legal" >
<specific name="Short Description" > Use second wind as minor action when you spend action point </specific>
</RulesElement>
<RulesElement name="Help or Hinder" type="Power" internal-id="ID_FMP_POWER_10965" url="http://www.wizards.com/dndinsider/compendium/power.aspx?id=10965" charelem="af83a68" legality="rules-legal" />
<RulesElement name="Press of Arms" type="Class Feature" internal-id="ID_FMP_CLASS_FEATURE_494" charelem="ae0ad60" legality="rules-legal" >
<specific name="Short Description" > You and allies within 3 add Cha mod to damage with opportunity attacks </specific>
</RulesElement>
</RulesElementTally>
<!--
The tally of the character's loot
-->
<LootTally>
<loot count="0" equip-count="0" ShowPowerCard="1" >
<RulesElement name="Light Shield" type="Armor" internal-id="ID_FMP_ARMOR_7" url="http://www.wizards.com/dndinsider/compendium/item.aspx?fid=7&ftype=2" charelem="af07528" legality="rules-legal" >
</RulesElement>
</loot>
<loot count="1" equip-count="0" ShowPowerCard="1" >
<RulesElement name="Chainmail" type="Armor" internal-id="ID_FMP_ARMOR_4" url="http://www.wizards.com/dndinsider/compendium/item.aspx?fid=4&ftype=2" charelem="af6c5f8" legality="rules-legal" >
</RulesElement>
<RulesElement name="Tactician's Armor +1" type="Magic Item" internal-id="ID_FMP_MAGIC_ITEM_1857" url="http://www.wizards.com/dndinsider/compendium/item.aspx?fid=1857&ftype=1" charelem="af38110" legality="rules-legal" >
</RulesElement>
</loot>
<loot count="1" equip-count="1" ShowPowerCard="1" >
<RulesElement name="Light Shield" type="Armor" internal-id="ID_FMP_ARMOR_7" url="http://www.wizards.com/dndinsider/compendium/item.aspx?fid=7&ftype=2" charelem="af462a8" legality="rules-legal" >
</RulesElement>
<RulesElement name="Throwing Shield (heroic tier)" type="Magic Item" internal-id="ID_FMP_MAGIC_ITEM_3286" url="http://www.wizards.com/dndinsider/compendium/item.aspx?fid=3286&ftype=1" charelem="af6b448" legality="rules-legal" >
</RulesElement>
</loot>
<loot count="1" equip-count="0" ShowPowerCard="1" >
<RulesElement name="Longsword" type="Weapon" internal-id="ID_FMP_WEAPON_19" url="http://www.wizards.com/dndinsider/compendium/item.aspx?fid=19&ftype=3" charelem="af57a68" legality="rules-legal" >
</RulesElement>
<RulesElement name="Lifedrinker Weapon +1" type="Magic Item" internal-id="ID_FMP_MAGIC_ITEM_718" url="http://www.wizards.com/dndinsider/compendium/item.aspx?fid=718&ftype=1" charelem="af74950" legality="rules-legal" >
</RulesElement>
</loot>
<loot count="1" equip-count="0" ShowPowerCard="1" >
<RulesElement name="Brooch of No Regrets +1" type="Magic Item" internal-id="ID_FMP_MAGIC_ITEM_3560" url="http://www.wizards.com/dndinsider/compendium/item.aspx?fid=3560&ftype=1" charelem="ad9d090" legality="rules-legal" >
</RulesElement>
</loot>
<loot count="0" equip-count="0" ShowPowerCard="1" >
<RulesElement name="Amulet of Resolution +2" type="Magic Item" internal-id="ID_FMP_MAGIC_ITEM_3554" url="http://www.wizards.com/dndinsider/compendium/item.aspx?fid=3554&ftype=1" charelem="af4fc40" legality="rules-legal" >
</RulesElement>
</loot>
<loot count="1" equip-count="1" ShowPowerCard="1" >
<RulesElement name="Resilience Amulet +2" type="Magic Item" internal-id="ID_FMP_MAGIC_ITEM_3700" url="http://www.wizards.com/dndinsider/compendium/item.aspx?fid=3700&ftype=1" charelem="ae942c0" legality="rules-legal" >