-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdmscreen_it.php
2959 lines (2956 loc) · 234 KB
/
dmscreen_it.php
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
<?php
session_start();
if(!$_SESSION[logged]){
include_once("access_denied.php");
exit;
}
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html><head>
<meta http-equiv="content-type" content="text/html; charset=ISO-8859-1"><title>Schermo del Dungeon Master</title>
<style>TD,TH{font-size:8pt;font-family:Arial, Helvetica, sans-serif;}</style>
</head>
<body>
<table x:str="" style="border-collapse: collapse; width: 100%; height: 100%;" border="0" cellpadding="0" cellspacing="0">
<col style="width: 135pt;" width="180"> <col span="2" style="width: 83pt;" width="110"> <tbody>
<tr style="height: 15pt; font-family: Scala Sans-Blk; color: white;" height="20">
<td colspan="3" class="xl24" style="height: 15pt; width: 301pt; text-align: center; background-color: black;"><a name="Special_Attacks"></a>Attacchi Speciali</td>
</tr>
<tr style="height: 15pt;" height="20">
<td class="xl24" style="height: 15pt; width: 135pt; font-weight: bold; text-align: center;" x:str="Special Attack " height="20" width="180">Attacco
Speciale<span style=""></span></td>
<td colspan="2" class="xl24" style="width: 166pt; font-weight: bold; text-align: center;" width="220">Breve
Descrizione</td>
</tr>
<tr style="height: 15pt;" height="20">
<td class="xl25" style="height: 15pt; width: 135pt; background-color: rgb(204, 204, 204); text-align: center;" x:str="Aid another " height="20" width="180">Aiutare
un altro<span style=""></span></td>
<td colspan="2" class="xl25" style="width: 166pt; background-color: rgb(204, 204, 204); text-align: center;" width="220">Fornire ad un alleato un bonus di +2 agli
attacchi o alla CA</td>
</tr>
<tr style="height: 15pt;" height="20">
<td class="xl25" style="height: 15pt; width: 135pt; text-align: center;" x:str="Bull rush " height="20" width="180">Caricare<span style=""></span></td>
<td colspan="2" class="xl25" style="width: 166pt; text-align: center;" width="220">Muoversi al doppio della propria velocità e
attaccare con un bonus di +2</td>
</tr>
<tr style="height: 15pt;" height="20">
<td class="xl25" style="height: 15pt; width: 135pt; background-color: rgb(204, 204, 204); text-align: center;" x:str="Charge " height="20" width="180"><span style=""></span>Combattere con due armi<span style=""></span></td>
<td colspan="2" class="xl25" style="width: 166pt; background-color: rgb(204, 204, 204); text-align: center;" width="220">Combattere con un arma in ciascuna mano</td>
</tr>
<tr style="height: 15pt;" height="20">
<td class="xl25" style="height: 15pt; width: 135pt; text-align: center;" x:str="Disarm " height="20" width="180">Disarmare<span style=""></span></td>
<td colspan="2" class="xl25" style="width: 166pt; text-align: center;" width="220">Colpire un'arma nelle mani di un avversario</td>
</tr>
<tr style="height: 15pt;" height="20">
<td class="xl25" style="height: 15pt; width: 135pt; background-color: rgb(204, 204, 204); text-align: center;" x:str="Feint " height="20" width="180">Fintare<span style=""></span></td>
<td colspan="2" class="xl25" style="width: 166pt; background-color: rgb(204, 204, 204); text-align: center;" width="220">Nega il bunus Destrezza alla CA dell'avversario</td>
</tr>
<tr style="height: 15pt;" height="20">
<td class="xl25" style="height: 15pt; width: 135pt; text-align: center;" x:str="Grapple " height="20" width="180">Lottare<span style=""></span></td>
<td colspan="2" class="xl25" style="width: 166pt; text-align: center;" width="220">Lottare con un avversario</td>
</tr>
<tr style="height: 15pt;" height="20">
<td class="xl25" style="height: 15pt; width: 135pt; background-color: rgb(204, 204, 204); text-align: center;" x:str="Overrun " height="20" width="180">Oltrepassare<span style=""></span></td>
<td colspan="2" class="xl25" style="width: 166pt; background-color: rgb(204, 204, 204); text-align: center;" width="220">Attraversare o passare sopra ad un avversario
come movimento</td>
</tr>
<tr style="height: 15pt;" height="20">
<td class="xl25" style="height: 15pt; width: 135pt; text-align: center;" x:str="Sunder " height="20" width="180"><span style=""></span>Sbilanciare</td>
<td colspan="2" class="xl25" style="width: 166pt; text-align: center;" width="220">Sbilanciare un avversario</td>
</tr>
<tr style="height: 15pt;" height="20">
<td class="xl25" style="height: 15pt; width: 135pt; background-color: rgb(204, 204, 204); text-align: center;" x:str="Throw splash weapon " height="20" width="180">Scacciare
(intimorire) i non morti<span style=""></span></td>
<td colspan="2" class="xl25" style="width: 166pt; background-color: rgb(204, 204, 204); text-align: center;" width="220">Incanalare energia positiva (o negativa) per
scacciare (o intimorire) i non morti</td>
</tr>
<tr style="height: 15pt;" height="20">
<td class="xl25" style="height: 15pt; width: 135pt; text-align: center;" x:str="Trip " height="20" width="180"><span style=""></span>Scaglaire un'arma a spargimento</td>
<td colspan="2" class="xl25" style="width: 166pt; text-align: center;" width="220">Scagliare un contenitore di liquido pericoloso
su un bersaglio</td>
</tr>
<tr style="height: 15pt;" height="20">
<td class="xl25" style="height: 15pt; width: 135pt; background-color: rgb(204, 204, 204); text-align: center;" x:str="Turn (rebuke) undead " height="20" width="180">Spaccare
l'arma<span style=""></span></td>
<td colspan="2" class="xl25" style="width: 166pt; background-color: rgb(204, 204, 204); text-align: center;" width="220">Colpire un'arma o uno scudo dell'avversario</td>
</tr>
<tr style="height: 15pt;" height="20">
<td class="xl25" style="height: 15pt; width: 135pt; text-align: center;" x:str="Two-weapon fighting " height="20" width="180"><span style=""> </span>Spingere</td>
<td colspan="2" class="xl25" style="width: 166pt; text-align: center;" width="220">Spingere un avversario di 1,5 m o più</td>
</tr>
</tbody>
</table><table x:str="" style="border-collapse: collapse; width: 100%; height: 1777px;" border="0" cellpadding="0" cellspacing="0">
<col style="width: 203pt;" width="270"> <col style="width: 98pt;" width="130"> <tbody>
<tr style="height: 15pt; color: white; font-family: Scala Sans-Blk;" height="20">
<td colspan="2" class="xl24" style="height: 15pt; width: 301pt; text-align: center; background-color: black;"><a name="Action_in_Combact"></a>Azioni
in Combattimento</td>
</tr>
<tr style="height: 15pt;" height="20">
<td class="xl24" style="height: 15pt; width: 203pt; font-weight: bold; text-align: center;" height="20" width="270">Azione Standard</td>
<td class="xl25" style="width: 98pt; font-weight: bold; text-align: center;" width="130">Attacco di Opportunità<font class="font6"><sup>1</sup></font></td>
</tr>
<tr style="height: 15pt;" height="20">
<td class="xl26" style="height: 15pt; width: 203pt; background-color: rgb(204, 204, 204); text-align: center;" height="20" width="270">Abbassare la resistenza agli
incantesimi</td>
<td class="xl27" style="width: 98pt; background-color: rgb(204, 204, 204); text-align: center;" width="130">No</td>
</tr>
<tr style="height: 15pt;" height="20">
<td class="xl26" style="height: 15pt; width: 203pt; text-align: center;" height="20" width="270">Accendere una torcia con un
tizzone ardente</td>
<td class="xl27" style="width: 98pt; text-align: center;" width="130">Sì</td>
</tr>
<tr style="height: 15pt;" height="20">
<td class="xl26" style="height: 15pt; width: 203pt; background-color: rgb(204, 204, 204); text-align: center;" height="20" width="270">Attacco (a distanza)</td>
<td class="xl27" style="width: 98pt; background-color: rgb(204, 204, 204); text-align: center;" width="130">Sì</td>
</tr>
<tr style="height: 15pt;" height="20">
<td class="xl26" style="width: 203pt; text-align: center; height: 0px;" width="270">Attacco (in mischia)</td>
<td class="xl27" style="width: 98pt; text-align: center; height: 0px;" width="130">No</td>
</tr>
<tr style="height: 15pt;" height="20">
<td class="xl26" style="width: 203pt; background-color: rgb(204, 204, 204); text-align: center; height: 11px;" width="270">Attacco (senz'armi)</td>
<td class="xl27" style="width: 98pt; background-color: rgb(204, 204, 204); text-align: center; height: 11px;" width="130">Sì</td>
</tr>
<tr style="height: 15pt;" height="20">
<td class="xl26" style="width: 203pt; text-align: center; height: 10px;" width="270">Attivare un oggetto magico
che non sia una pozione o un olio</td>
<td class="xl27" style="width: 98pt; text-align: center; height: 10px;" width="130">No</td>
</tr>
<tr style="height: 15pt;" height="20">
<td class="xl26" style="width: 203pt; background-color: rgb(204, 204, 204); text-align: center; height: 0px;" width="270">Aiutare ad un altro</td>
<td class="xl27" style="width: 98pt; background-color: rgb(204, 204, 204); text-align: center; height: 0px;" width="130">Forse<font class="font6"><sup>2</sup></font></td>
</tr>
<tr style="height: 15pt;" height="20">
<td class="xl26" style="width: 203pt; text-align: center; height: 17px;" width="270">Bere una pozione o applicare
un olio</td>
<td class="xl27" style="width: 98pt; text-align: center; height: 17px;" width="130">Sì</td>
</tr>
<tr style="height: 15pt;" height="20">
<td class="xl26" style="width: 203pt; background-color: rgb(204, 204, 204); text-align: center; height: 9px;" width="270">Concentrarsi per mantenere
attivo un incantesimo</td>
<td class="xl27" style="width: 98pt; background-color: rgb(204, 204, 204); text-align: center; height: 9px;" width="130">No</td>
</tr>
<tr style="height: 15pt;" height="20">
<td class="xl26" style="width: 203pt; text-align: center; height: 0px;" width="270">Difesa totale</td>
<td class="xl27" style="width: 98pt; text-align: center; height: 0px;" width="130">No</td>
</tr>
<tr style="height: 15pt;" height="20">
<td class="xl26" style="width: 203pt; background-color: rgb(204, 204, 204); text-align: center; height: 13px;" width="270">Estrarre un'arma nascosta
(vedi l'abilità Rapidità di Mano)</td>
<td class="xl27" style="width: 98pt; background-color: rgb(204, 204, 204); text-align: center; height: 13px;" width="130">No</td>
</tr>
<tr style="height: 15pt;" height="20">
<td class="xl26" style="width: 203pt; text-align: center; height: 8px;" width="270">Fintare</td>
<td class="xl27" style="width: 98pt; text-align: center; height: 8px;" width="130">No</td>
</tr>
<tr style="height: 15pt;" height="20">
<td class="xl26" style="width: 203pt; background-color: rgb(204, 204, 204); text-align: center; height: 13px;" width="270">Interrompere un incantesimo</td>
<td class="xl27" style="width: 98pt; background-color: rgb(204, 204, 204); text-align: center; height: 13px;" width="130">No</td>
</tr>
<tr style="height: 15pt;" height="20">
<td class="xl26" style="width: 203pt; text-align: center; height: 14px;" width="270">Lanciare un incnatesimi
(tempo di lancio 1 azione standard)</td>
<td class="xl27" style="width: 98pt; text-align: center; height: 14px;" width="130">Sì</td>
</tr>
<tr style="height: 15pt;" height="20">
<td class="xl26" style="width: 203pt; background-color: rgb(204, 204, 204); text-align: center; height: 3px;" width="270">Leggere una pergamena</td>
<td class="xl27" style="width: 98pt; background-color: rgb(204, 204, 204); text-align: center; height: 3px;" width="130">Sì</td>
</tr>
<tr style="height: 15pt;" height="20">
<td class="xl26" style="width: 203pt; text-align: center; height: 10px;" width="270">Liberarsi da una lotta</td>
<td class="xl27" style="width: 98pt; text-align: center; height: 10px;" width="130">No</td>
</tr>
<tr style="height: 15pt;" height="20">
<td class="xl26" style="width: 203pt; background-color: rgb(204, 204, 204); text-align: center; height: 0px;" width="270">Oltrepassare</td>
<td class="xl27" style="width: 98pt; background-color: rgb(204, 204, 204); text-align: center; height: 0px;" width="130">No</td>
</tr>
<tr style="height: 15pt;" height="20">
<td class="xl26" style="width: 203pt; text-align: center; height: 0px;" width="270">Preparare (attiva un'azione
standard)</td>
<td class="xl27" style="width: 98pt; text-align: center; height: 0px;" width="130">No</td>
</tr>
<tr style="height: 15pt;" height="20">
<td class="xl26" style="width: 203pt; background-color: rgb(204, 204, 204); text-align: center; height: 19px;" width="270">Scacciare o intimorire i non
morti</td>
<td class="xl27" style="width: 98pt; background-color: rgb(204, 204, 204); text-align: center; height: 19px;" width="130">No</td>
</tr>
<tr style="height: 15pt;" height="20">
<td class="xl26" style="width: 203pt; text-align: center; height: 17px;" width="270">Spezzare un'arma (attacco)</td>
<td class="xl27" style="width: 98pt; text-align: center; height: 17px;" width="130">Sì</td>
</tr>
<tr style="height: 15pt;" height="20">
<td class="xl26" style="width: 203pt; background-color: rgb(204, 204, 204); text-align: center; height: 0px;" width="270">Spezzare un oggetto (attacco)</td>
<td class="xl27" style="width: 98pt; background-color: rgb(204, 204, 204); text-align: center; height: 0px;" width="130">Forse<font class="font6"><sup>3</sup></font></td>
</tr>
<tr style="height: 15pt;" height="20">
<td class="xl26" style="width: 203pt; text-align: center; height: 0px;" width="270">Spingere</td>
<td class="xl27" style="width: 98pt; text-align: center; height: 0px;" width="130">Sì</td>
</tr>
<tr style="height: 15pt;" height="20">
<td class="xl26" style="width: 203pt; background-color: rgb(204, 204, 204); text-align: center; height: 0px;" width="270">Stabilizzare un alleato
morente
(vedi l'abilità Guarire)</td>
<td class="xl27" style="width: 98pt; background-color: rgb(204, 204, 204); text-align: center; height: 0px;" width="130">Sì</td>
</tr>
<tr style="height: 15pt;" height="20">
<td class="xl26" style="width: 203pt; text-align: center; height: 16px;" width="270">Usare un'abilità che
richiede 1 azione</td>
<td class="xl27" style="width: 98pt; text-align: center; height: 16px;" width="130">Generalmente</td>
</tr>
<tr style="height: 15pt;" height="20">
<td class="xl26" style="width: 203pt; background-color: rgb(204, 204, 204); text-align: center; height: 16px;" width="270">Usare una capacità magica</td>
<td class="xl27" style="width: 98pt; background-color: rgb(204, 204, 204); text-align: center; height: 16px;" width="130">Sì</td>
</tr>
<tr style="height: 15pt;" height="20">
<td class="xl26" style="width: 203pt; text-align: center; height: 9px;" width="270">Usare una capacità
soprannaturale</td>
<td class="xl27" style="width: 98pt; text-align: center; height: 9px;" width="130">No</td>
</tr>
<tr style="height: 15pt;" height="20">
<td class="xl26" style="width: 203pt; background-color: rgb(204, 204, 204); text-align: center; height: 16px;" width="270">Usare una capacità
straordinria</td>
<td class="xl27" style="width: 98pt; background-color: rgb(204, 204, 204); text-align: center; height: 16px;" width="130">No</td>
</tr>
<tr style="height: 15pt;" height="20">
<td class="xl24" style="width: 203pt; font-weight: bold; text-align: center; height: 19px;" width="270">Azione Movimento</td>
<td class="xl25" style="width: 98pt; font-weight: bold; text-align: center; height: 19px;" width="130">Attacco di Opportunità<font class="font6"><sup>1</sup></font></td>
</tr>
<tr style="height: 15pt;" height="20">
<td class="xl26" style="width: 203pt; background-color: rgb(204, 204, 204); text-align: center; height: 5px;" width="270">Alzarsi in piedi da proni</td>
<td class="xl27" style="width: 98pt; background-color: rgb(204, 204, 204); text-align: center; height: 5px;" width="130">Sì</td>
</tr>
<tr style="height: 15pt;" height="20">
<td class="xl26" style="width: 203pt; text-align: center; height: 9px;" width="270">Aprire o chiudere una porta</td>
<td class="xl27" style="width: 98pt; text-align: center; height: 9px;" width="130">No</td>
</tr>
<tr style="height: 15pt;" height="20">
<td class="xl26" style="width: 203pt; background-color: rgb(204, 204, 204); text-align: center; height: 9px;" width="270">Caricare una balestra a mano
o una balestra leggera</td>
<td class="xl27" style="width: 98pt; background-color: rgb(204, 204, 204); text-align: center; height: 9px;" width="130">Sì</td>
</tr>
<tr style="height: 15pt;" height="20">
<td class="xl26" style="width: 203pt; text-align: center; height: 0px;" width="270">Controllare una cavalcatura
spaventata</td>
<td class="xl27" style="width: 98pt; text-align: center; height: 0px;" width="130">Sì</td>
</tr>
<tr style="height: 15pt;" height="20">
<td class="xl26" style="width: 203pt; background-color: rgb(204, 204, 204); text-align: center; height: 16px;" width="270">Dirigere o ridirigere un
incantesimo attivo</td>
<td class="xl27" style="width: 98pt; background-color: rgb(204, 204, 204); text-align: center; height: 16px;" width="130">No</td>
</tr>
<tr style="height: 15pt;" height="20">
<td class="xl26" style="width: 203pt; text-align: center; height: 1px;" width="270">Estrarre un'arma<font class="font6"><sup>4</sup></font></td>
<td class="xl27" style="width: 98pt; text-align: center; height: 1px;" width="130">No</td>
</tr>
<tr style="height: 15pt;" height="20">
<td class="xl26" style="width: 203pt; background-color: rgb(204, 204, 204); text-align: center; height: 10px;" width="270">Montare o smontare da cavallo</td>
<td class="xl27" style="width: 98pt; background-color: rgb(204, 204, 204); text-align: center; height: 10px;" width="130">No</td>
</tr>
<tr style="height: 15pt;" height="20">
<td class="xl26" style="width: 203pt; text-align: center; height: 17px;" width="270">Movimento</td>
<td class="xl27" style="width: 98pt; text-align: center; height: 17px;" width="130">Sì</td>
</tr>
<tr style="height: 15pt;" height="20">
<td class="xl26" style="width: 203pt; background-color: rgb(204, 204, 204); text-align: center; height: 10px;" width="270">Muovere un oggetto pesante</td>
<td class="xl27" style="width: 98pt; background-color: rgb(204, 204, 204); text-align: center; height: 10px;" width="130">Sì</td>
</tr>
<tr style="height: 15pt;" height="20">
<td class="xl26" style="width: 203pt; text-align: center; height: 15px;" width="270">Preparare o lasciar cadere
uno scudo<font class="font6"><sup>4</sup></font></td>
<td class="xl27" style="width: 98pt; text-align: center; height: 15px;" width="130">No</td>
</tr>
<tr style="height: 15pt;" height="20">
<td class="xl26" style="width: 203pt; background-color: rgb(204, 204, 204); text-align: center; height: 0px;" width="270">Raccogliere un oggetto</td>
<td class="xl27" style="width: 98pt; background-color: rgb(204, 204, 204); text-align: center; height: 0px;" width="130">Sì</td>
</tr>
<tr style="height: 15pt;" height="20">
<td class="xl26" style="width: 203pt; text-align: center; height: 15px;" width="270">Recuperare un oggetto
custodito</td>
<td class="xl27" style="width: 98pt; text-align: center; height: 15px;" width="270">Sì</td>
</tr>
<tr style="height: 15pt;" height="20">
<td class="xl26" style="width: 203pt; background-color: rgb(204, 204, 204); text-align: center; height: 10px;" width="270">Rinfoderare un'arma</td>
<td class="xl27" style="width: 98pt; background-color: rgb(204, 204, 204); text-align: center; height: 10px;" width="130">Sì</td>
</tr>
<tr style="height: 15pt;" height="20">
<td class="xl24" style="width: 203pt; font-weight: bold; text-align: center; height: 18px;" width="270">Azione di Round Completo</td>
<td class="xl25" style="width: 98pt; font-weight: bold; text-align: center; height: 18px;" width="130">Attacco di Opportunità<font class="font6"><sup>1</sup></font></td>
</tr>
<tr style="height: 15pt;" height="20">
<td class="xl26" style="width: 203pt; background-color: rgb(204, 204, 204); text-align: center; height: 17px;" width="270">Accendere una torcia</td>
<td class="xl27" style="width: 98pt; background-color: rgb(204, 204, 204); text-align: center; height: 17px;" width="130">Sì</td>
</tr>
<tr style="height: 15pt;" height="20">
<td class="xl26" style="width: 203pt; text-align: center; height: 15px;" width="270">Agganciare o sganciare
un'arma al guanto d'arme con sicura</td>
<td class="xl27" style="width: 98pt; text-align: center; height: 15px;" width="130">Sì</td>
</tr>
<tr style="height: 15pt;" height="20">
<td class="xl26" style="height: 15pt; width: 203pt; background-color: rgb(204, 204, 204); text-align: center;" height="20" width="270">Attacco Completo</td>
<td class="xl27" style="width: 98pt; background-color: rgb(204, 204, 204); text-align: center;" width="130">No</td>
</tr>
<tr style="height: 15pt;" height="20">
<td class="xl26" style="height: 15pt; width: 203pt; text-align: center;" height="20" width="270">Caricare<font class="font6"><sup>5</sup></font></td>
<td class="xl27" style="width: 98pt; text-align: center;" width="130">No</td>
</tr>
<tr style="height: 15pt;" height="20">
<td class="xl26" style="height: 15pt; width: 203pt; background-color: rgb(204, 204, 204); text-align: center;" height="20" width="270">Caricare una balestra pesante
o una balestra a ripetizione</td>
<td class="xl27" style="width: 98pt; background-color: rgb(204, 204, 204); text-align: center;" width="130">Sì</td>
</tr>
<tr style="height: 15pt;" height="20">
<td class="xl26" style="height: 15pt; width: 203pt; text-align: center;" height="20" width="270">Correre</td>
<td class="xl27" style="width: 98pt; text-align: center;" width="130">Sì</td>
</tr>
<tr style="height: 15pt;" height="20">
<td class="xl26" style="height: 15pt; width: 203pt; background-color: rgb(204, 204, 204); text-align: center;" height="20" width="270">Liberarsi da una rete</td>
<td class="xl27" style="width: 98pt; background-color: rgb(204, 204, 204); text-align: center;" width="130">Sì</td>
</tr>
<tr style="height: 15pt;" height="20">
<td class="xl26" style="height: 15pt; width: 203pt; text-align: center;" height="20" width="270">Prepararsi
a scagliare un'arma a spargimento</td>
<td class="xl27" style="width: 98pt; text-align: center;" width="130">Sì</td>
</tr>
<tr style="height: 15pt;" height="20">
<td class="xl26" style="height: 15pt; width: 203pt; background-color: rgb(204, 204, 204); text-align: center;" height="20" width="270">Ritirarsi<font class="font6"><sup>5</sup></font></td>
<td class="xl27" style="width: 98pt; background-color: rgb(204, 204, 204); text-align: center;" width="130">No</td>
</tr>
<tr style="height: 15pt;" height="20">
<td class="xl26" style="height: 15pt; width: 203pt; text-align: center;" height="20" width="270">Sferrare il colpo di grazia</td>
<td class="xl27" style="width: 98pt; text-align: center;" width="130">Sì</td>
</tr>
<tr style="height: 15pt;" height="20">
<td class="xl26" style="height: 15pt; width: 203pt; background-color: rgb(204, 204, 204); text-align: center;" height="20" width="270">Spegnere delle fiamme</td>
<td class="xl27" style="width: 98pt; background-color: rgb(204, 204, 204); text-align: center;" width="130">No</td>
</tr>
<tr style="height: 15pt;" height="20">
<td class="xl26" style="height: 15pt; width: 203pt; text-align: center;" height="34" width="270">Usare un'abilità che righiede
1 round</td>
<td class="xl27" style="width: 98pt; text-align: center;" width="130">Sì</td>
</tr>
<tr style="height: 15pt;" height="20">
<td class="xl26" style="height: 15pt; width: 203pt; background-color: rgb(204, 204, 204); text-align: center;" height="20" width="270">Usare
un incantesimo a contatto su al massimo sei alleati</td>
<td class="xl27" style="width: 98pt; background-color: rgb(204, 204, 204); text-align: center;" width="130">Generalmente</td>
</tr>
<tr style="height: 15pt;" height="20">
<td class="xl24" style="height: 15pt; width: 203pt; font-weight: bold; text-align: center;" height="20" width="270">Azione Gratuita</td>
<td class="xl25" style="width: 98pt; font-weight: bold; text-align: center;" width="130">Attacco di Opportunità<font class="font6"><sup>1</sup></font></td>
</tr>
<tr style="height: 15pt;" height="20">
<td class="xl26" style="height: 15pt; width: 203pt; background-color: rgb(204, 204, 204); text-align: center;" height="20" width="270">Interrompere la
concentrazione su di un incantesimo</td>
<td class="xl27" style="width: 98pt; background-color: rgb(204, 204, 204); text-align: center;" width="130">No</td>
</tr>
<tr style="height: 15pt;" height="20">
<td class="xl26" style="height: 15pt; width: 203pt; text-align: center;" height="20" width="270">Lanciare un incantesimo rapido</td>
<td class="xl27" style="width: 98pt; text-align: center;" width="130">No</td>
</tr>
<tr style="height: 15pt;" height="20">
<td class="xl26" style="height: 15pt; width: 203pt; background-color: rgb(204, 204, 204); text-align: center;" height="20" width="270">Lasciar cadere un oggetto</td>
<td class="xl27" style="width: 98pt; background-color: rgb(204, 204, 204); text-align: center;" width="130">No</td>
</tr>
<tr style="height: 15pt;" height="20">
<td class="xl26" style="height: 15pt; width: 203pt; text-align: center;" height="20" width="270">Lasciarsi cadere a terra</td>
<td class="xl27" style="width: 98pt; text-align: center;" width="130">No</td>
</tr>
<tr style="height: 15pt;" height="20">
<td class="xl26" style="height: 15pt; width: 203pt; background-color: rgb(204, 204, 204); text-align: center;" height="20" width="270">Parlare</td>
<td class="xl27" style="width: 98pt; background-color: rgb(204, 204, 204); text-align: center;" width="130">No</td>
</tr>
<tr style="height: 15pt;" height="20">
<td class="xl26" style="height: 15pt; width: 203pt; text-align: center;" height="20" width="270">Preparare le componenti
materiali per lanciare un incantesimo<font class="font6"><sup>6</sup></font></td>
<td class="xl27" style="width: 98pt; text-align: center;" width="130">No</td>
</tr>
<tr style="height: 15pt;" height="20">
<td class="xl24" style="height: 15pt; width: 203pt; font-weight: bold; background-color: rgb(204, 204, 204); text-align: center;" height="20" width="270">Non Azione</td>
<td class="xl25" style="width: 98pt; font-weight: bold; background-color: rgb(204, 204, 204); text-align: center;" width="130">Attacco di Opportunità<font class="font6"><sup>1</sup></font></td>
</tr>
<tr style="height: 15pt;" height="20">
<td class="xl26" style="height: 15pt; width: 203pt; text-align: center;" height="20" width="270">Passo di 1,5 metri</td>
<td class="xl27" style="width: 98pt; text-align: center;" width="130">No</td>
</tr>
<tr style="height: 15pt;" height="20">
<td class="xl26" style="height: 15pt; width: 203pt; background-color: rgb(204, 204, 204); text-align: center;" height="20" width="270">Ritardare</td>
<td class="xl27" style="width: 98pt; background-color: rgb(204, 204, 204); text-align: center;" width="130">No</td>
</tr>
<tr style="height: 15pt;" height="20">
<td class="xl24" style="height: 15pt; width: 203pt; text-align: center; font-weight: bold;" height="20" width="270">Azioni Varie</td>
<td class="xl28" style="width: 98pt; text-align: center; font-weight: bold;" width="130">Attacco di Opportunità<font class="font6"><sup>1</sup></font></td>
</tr>
<tr style="height: 15pt;" height="20">
<td class="xl26" style="height: 15pt; width: 203pt; background-color: rgb(204, 204, 204); text-align: center;" height="20" width="270">Disarmare<font class="font6"><sup>7</sup></font></td>
<td class="xl27" style="width: 98pt; background-color: rgb(204, 204, 204); text-align: center;" width="130">Sì</td>
</tr>
<tr style="height: 15pt;" height="20">
<td class="xl26" style="height: 15pt; width: 203pt; text-align: center;" height="20" width="270">Lottare<font class="font6"><sup>7</sup></font></td>
<td class="xl27" style="width: 98pt; text-align: center;" width="130">Sì</td>
</tr>
<tr style="height: 15pt;" height="20">
<td class="xl26" style="height: 15pt; width: 203pt; background-color: rgb(204, 204, 204); text-align: center;" height="20" width="270">Sbilanciare un'avversario<font class="font6"><sup>7</sup></font></td>
<td class="xl27" style="width: 98pt; background-color: rgb(204, 204, 204); text-align: center;" width="130">Sì</td>
</tr>
<tr style="height: 15pt;" height="20">
<td class="xl26" style="height: 15pt; width: 203pt; text-align: center;" height="20" width="270">Usare un talento<font class="font6"><sup>8</sup></font></td>
<td class="xl27" style="width: 98pt; text-align: center;" width="130">Variabile</td>
</tr>
<tr style="">
<td style="height: 29px;" colspan="2" rowspan="1"><font class="font6"><sup>1</sup></font><small>
Indipendentemente dall'azione, se si esce da un quadretto minacciato,
si provoca un attacco di opportunità. Questa colonna indica che, pur
non esendo di per sé movimento, provoca un attacco di opportunità.</small></td>
</tr>
<tr style="">
<td style="height: 23px;" colspan="2" rowspan="1"><font class="font6"><sup>2</sup></font><small>
Se si presta soccorso a qualcuno impiegando un'azione che normalmente
provocarebbe un attacco di opportunità, allora l'atto di prestar
soccorso provoca anch'esso un attacco di oppurtunità.</small></td>
</tr>
<tr style="height: 15pt; " align="justify" height="20">
<td colspan="2" class="xl26" style="width: 301pt; height: 15px;" width="400"><font class="font6"><sup>3</sup></font><small>
Se l'oggetto è impugnato, trasportato o indossato da una creatura, sì.
Altrimenti, no.</small></td>
</tr>
<tr style="height: 15pt; " align="justify" height="20">
<td colspan="2" class="xl26" style="width: 301pt; height: 22px;" width="400"><font class="font6"><sup>4</sup></font><small>
Se si ha un bonus di attacco base di +1 o superiore, si può fare una di
queste azioni insieme ad un normale movimento. Se si ha il talento
Combattere con Due Armi, si possono estrarre due armi leggero o due
armi a una mano nello stesso tempo che normalmente occorrerebbe per
estrarne una sola.</small></td>
</tr>
<tr style="height: 15pt; " align="justify" height="20">
<td colspan="2" class="xl26" style="width: 301pt; height: 23px;" width="400"><font class="font6"><sup>5</sup></font><small>
Può essere effettuata come azione standard se ci si limita ad
effettuare una sola azione in a round.</small></td>
</tr>
<tr style="height: 15pt; " align="justify" height="20">
<td colspan="2" class="xl26" style="width: 301pt; height: 19px;" width="400"><font class="font6"><sup>6</sup></font><small>
A meno che la componente non sia un oggetto estremamente grande o poco
maneggevole.</small></td>
</tr>
<tr style="height: 15pt; " align="justify" height="20">
<td colspan="2" class="xl26" style="width: 301pt; height: 9px;" width="400"><font class="font6"><sup>7</sup></font><small>
Queste forme di attacco equivalgono a un attacco in mischia, non a
un'azione. In quanto attacchi in mischia, possono essere usati una sola
volta in un'azione di attacco o di carica, uno o più volte in un'azione
di attacco completo o persino come attacco di opportunità.</small></td>
</tr>
<tr style="height: 15pt; " align="justify" height="20">
<td colspan="2" class="xl26" style="width: 301pt; height: 20px;" width="400"><font class="font6"><sup>8</sup></font><small>
La descrizione di un talento definisce i suoi effetti.</small></td>
</tr>
</tbody>
</table><table x:str="" style="border-collapse: collapse; width: 100%; height: 409px;" border="0" cellpadding="0" cellspacing="0">
<col style="width: 135pt;" width="180"> <col span="2" style="width: 83pt;" width="110"> <tbody>
<tr style="height: 15pt; color: white; font-family: Scala Sans-Blk;" height="20">
<td colspan="3" class="xl24" style="height: 15pt; text-align: center; background-color: black; width: 115px;" height="20"><a name="Common_Armor_Weapon_and_Shield_Hardness_and_Hit_Points"></a>Durezza
e Punti Ferita di Armature, Armi e Scudi Comuni</td>
</tr>
<tr style="height: 15pt;" height="20">
<td class="xl24" style="height: 15pt; font-weight: bold; width: 267px; text-align: center;" height="20">Arma o Scudo</td>
<td class="xl25" style=" font-weight: bold; width: 115px; text-align: center;">Durezza</td>
<td class="xl25" style=" font-weight: bold; width: 115px; text-align: center;">PF<font class="font5"><sup>1</sup></font></td>
</tr>
<tr style="height: 15pt;" height="20">
<td class="xl26" style="height: 15pt; background-color: rgb(204, 204, 204); width: 267px; text-align: center;" x:str="Light blade " height="20">Lama leggera<span style=""> </span></td>
<td class="xl27" style=" background-color: rgb(204, 204, 204); width: 115px; text-align: center;" x:num="">10</td>
<td class="xl27" style=" background-color: rgb(204, 204, 204); width: 115px; text-align: center;" x:num="">2</td>
</tr>
<tr style="height: 15pt;" height="20">
<td class="xl26" style="height: 15pt; width: 267px; text-align: center;" height="20">Lama a una mano</td>
<td class="xl27" style=" width: 115px; text-align: center;" x:num="">10</td>
<td class="xl27" style=" width: 115px; text-align: center;" x:num="">5</td>
</tr>
<tr style="height: 15pt;" height="20">
<td class="xl26" style="height: 15pt; background-color: rgb(204, 204, 204); width: 267px; text-align: center;" height="20">Lama a due mani</td>
<td class="xl27" style=" background-color: rgb(204, 204, 204); width: 115px; text-align: center;" x:num="">10</td>
<td class="xl27" style=" background-color: rgb(204, 204, 204); width: 115px; text-align: center;" x:num="">10</td>
</tr>
<tr style="height: 15pt;" height="20">
<td class="xl26" style="height: 15pt; width: 267px; text-align: center;" height="20">Arma leggera con impugnatura di metallo</td>
<td class="xl27" style=" width: 115px; text-align: center;" x:num="">10</td>
<td class="xl27" style=" width: 115px; text-align: center;" x:num="">10</td>
</tr>
<tr style="height: 15pt;" height="20">
<td class="xl26" style="height: 15pt; background-color: rgb(204, 204, 204); width: 267px; text-align: center;" height="20">Arma a una mano con impugnatura di metallo</td>
<td class="xl27" style=" background-color: rgb(204, 204, 204); width: 115px; text-align: center;" x:num="">10</td>
<td class="xl27" style=" background-color: rgb(204, 204, 204); width: 115px; text-align: center;" x:num="">20</td>
</tr>
<tr style="height: 15pt;" height="20">
<td class="xl26" style="height: 15pt; width: 267px; text-align: center;" x:str="Light hafted weapon " height="20">Arma leggera
con impugnatura<span style=""> </span></td>
<td class="xl27" style=" width: 115px; text-align: center;" x:num="">5</td>
<td class="xl27" style=" width: 115px; text-align: center;" x:num="">2</td>
</tr>
<tr style="height: 15pt;" height="20">
<td class="xl26" style="height: 15pt; background-color: rgb(204, 204, 204); width: 267px; text-align: center;" height="20">Arma a una mano con impugnatura</td>
<td class="xl27" style=" background-color: rgb(204, 204, 204); width: 115px; text-align: center;" x:num="">5</td>
<td class="xl27" style=" background-color: rgb(204, 204, 204); width: 115px; text-align: center;" x:num="">5</td>
</tr>
<tr style="height: 15pt;" height="20">
<td class="xl26" style="height: 15pt; width: 267px; text-align: center;" height="20">Arma a due mani con impugnatura di
metallo</td>
<td class="xl27" style=" width: 115px; text-align: center;" x:num="">5</td>
<td class="xl27" style=" width: 115px; text-align: center;" x:num="">10</td>
</tr>
<tr style="height: 15pt;" height="20">
<td class="xl26" style="height: 15pt; background-color: rgb(204, 204, 204); width: 267px; text-align: center;" height="20">Arma a munzioni</td>
<td class="xl27" style=" background-color: rgb(204, 204, 204); width: 115px; text-align: center;" x:num="">5</td>
<td class="xl27" style=" background-color: rgb(204, 204, 204); width: 115px; text-align: center;" x:num="">5</td>
</tr>
<tr style="height: 15pt;" height="20">
<td class="xl26" style="height: 15pt; width: 267px; text-align: center;" height="20">Armatura</td>
<td class="xl27" style=" width: 115px; text-align: center;">speciale<font class="font5"><sup>2</sup></font></td>
<td class="xl27" style=" width: 115px; text-align: center;">bonus
armatura x 5</td>
</tr>
<tr style="height: 12.75pt;" height="17">
<td class="xl26" style="height: 12.75pt; background-color: rgb(204, 204, 204); width: 267px; text-align: center;" height="17">Buckler</td>
<td class="xl27" style=" background-color: rgb(204, 204, 204); width: 115px; text-align: center;" x:num="">10</td>
<td class="xl27" style=" width: 115px; text-align: center; background-color: rgb(204, 204, 204);" x:num="">5</td>
</tr>
<tr style="height: 15pt;" height="20">
<td class="xl26" style="height: 15pt; width: 267px; text-align: center;" height="20">Scudo leggero di legno</td>
<td class="xl27" style=" width: 115px; text-align: center;" x:num="">5</td>
<td class="xl27" style=" width: 115px; text-align: center;" x:num="">7</td>
</tr>
<tr style="height: 15pt;" height="20">
<td class="xl26" style="height: 12.75pt; background-color: rgb(204, 204, 204); width: 267px; text-align: center;" height="17">Scudo pesante di legno</td>
<td class="xl27" style=" background-color: rgb(204, 204, 204); width: 115px; text-align: center;" x:num="">5</td>
<td class="xl27" style=" background-color: rgb(204, 204, 204); width: 115px; text-align: center;" x:num="">15</td>
</tr>
<tr style="height: 15pt;" height="20">
<td class="xl26" style="height: 12.75pt; width: 267px; text-align: center;" height="17">Scudo leggero di metallo</td>
<td class="xl27" style=" width: 115px; text-align: center;" x:num="">10</td>
<td class="xl27" style=" width: 115px; text-align: center;" x:num="">10</td>
</tr>
<tr style="height: 15pt;" height="20">
<td class="xl26" style="height: 12.75pt; background-color: rgb(204, 204, 204); width: 267px; text-align: center;" height="17">Scudo pesante di metalo</td>
<td class="xl27" style=" background-color: rgb(204, 204, 204); width: 115px; text-align: center;" x:num="">10</td>
<td class="xl27" style=" background-color: rgb(204, 204, 204); width: 115px; text-align: center;" x:num="">20</td>
</tr>
<tr style="height: 15pt;" height="20">
<td class="xl26" style="height: 12.75pt; width: 267px; text-align: center;" height="17">Scudo a Torre</td>
<td class="xl27" style=" width: 115px; text-align: center;" x:num="">5</td>
<td class="xl27" style=" width: 115px; text-align: center;" x:num="">20</td>
</tr>
<tr style="height: 15pt; " height="20">
<td colspan="3" class="xl26" style="text-align: justify; width: 115px; height: 30px;"><font class="font5"><sup>1</sup></font><small>
Il valore dei pf dato è quello per armature, armi e scudi di taglia
Media. Si divide per 2 per ogni categoria di taglia di oggetto
inferiore alla Media, o si moltiplica per 2 per ogni categoria
superiore alla Media.</small></td>
</tr>
<tr style="height: 15pt; " height="20">
<td colspan="3" class="xl26" style="width: 115px; height: 15px;"><font class="font5"><sup>2</sup></font><small>
Varia in funzione del materiale.</small></td>
</tr>
</tbody>
</table><table x:str="" style="border-collapse: collapse; width: 100%; height: 100%;" border="0" cellpadding="0" cellspacing="0">
<col style="width: 135pt;" width="180"> <col span="2" style="width: 83pt;" width="110"> <tbody>
<tr style="height: 15pt; font-family: Scala Sans-Blk; color: white;" height="20">
<td colspan="3" class="xl24" style="height: 15pt; text-align: center; width: 301pt; background-color: black;"><a name="Armor_Class_Modifiers"></a>Modificatori alla
Classe Armatura</td>
</tr>
<tr style="height: 15pt;" height="20">
<td class="xl24" style="height: 15pt; font-weight: bold; width: 135pt; text-align: center;" height="20" width="180">Il Difensore è . . .</td>
<td class="xl25" style="width: 83pt; font-weight: bold; text-align: center;" width="110">In Mischia</td>
<td class="xl25" style="width: 83pt; font-weight: bold; text-align: center;" width="110">A Distanza</td>
</tr>
<tr style="height: 15pt;" height="20">
<td class="xl26" style="height: 15pt; width: 135pt; background-color: rgb(204, 204, 204); text-align: center;" height="20" width="180">Accecato</td>
<td class="xl27" style="width: 83pt; background-color: rgb(204, 204, 204); text-align: center;" x:num="" width="110">–2<font class="font5"><sup>1</sup></font></td>
<td class="xl27" style="width: 83pt; background-color: rgb(204, 204, 204); text-align: center;" x:num="" width="110">–2<font class="font5"><sup>1</sup></font></td>
</tr>
<tr style="height: 15pt;" height="20">
<td class="xl26" style="height: 15pt; width: 135pt; text-align: center;" height="20" width="180">Dietro una copertura</td>
<td class="xl27" style="width: 83pt; text-align: center;" width="110">+4</td>
<td class="xl27" style="width: 83pt; text-align: center;" width="110">+4</td>
</tr>
<tr>
<td style=" text-align: center; height: 22px; background-color: rgb(204, 204, 204);">Colto
alla sprovvista (come sorpreso, in equilibrio o in scalata)</td>
<td style=" text-align: center; height: 22px; background-color: rgb(204, 204, 204);">+0<font class="font5"><sup>1</sup></font></td>
<td style=" text-align: center; height: 22px; background-color: rgb(204, 204, 204);">+0<font class="font5"><sup>1</sup></font></td>
</tr>
<tr style="height: 15pt;" height="20">
<td class="xl26" style="height: 15pt; width: 135pt; text-align: center;" height="20" width="180">Immobilizzato</td>
<td class="xl27" style="width: 83pt; text-align: center;" width="110">–4<font class="font5"><sup>4</sup></font></td>
<td class="xl27" style="width: 83pt; text-align: center;" x:num="" width="110">+0<font class="font5"><sup>4</sup></font></td>
</tr>
<tr style="height: 15pt;" height="20">
<td class="xl26" style="height: 15pt; width: 135pt; text-align: center; background-color: rgb(204, 204, 204);" height="20" width="180">Indifeso (come paralizzato,
addormentato o legato)</td>
<td class="xl27" style="width: 83pt; text-align: center; background-color: rgb(204, 204, 204);" width="110">–4<font class="font5"><sup>4</sup></font></td>
<td class="xl27" style="width: 83pt; text-align: center; background-color: rgb(204, 204, 204);" x:num="" width="110">+0<font class="font5"><sup>4</sup></font></td>
</tr>
<tr style="height: 15pt;" height="20">
<td class="xl26" style="height: 15pt; width: 135pt; text-align: center; background-color: white;" height="20" width="180">Inginocchiato o seduto</td>
<td class="xl27" style="width: 83pt; text-align: center; background-color: white;" width="110">–2</td>
<td class="xl27" style="width: 83pt; text-align: center; background-color: white;" x:num="" width="110">+2</td>
</tr>
<tr style="height: 15pt;" height="20">
<td class="xl26" style="height: 15pt; width: 135pt; text-align: center; background-color: rgb(204, 204, 204);" height="20" width="180">In lotta (ma l'attaccante non
lo è)</td>
<td class="xl27" style="width: 83pt; text-align: center; background-color: rgb(204, 204, 204);" x:num="" width="110">+0<font class="font5"><sup>1</sup></font></td>
<td class="xl27" style="width: 83pt; text-align: center; background-color: rgb(204, 204, 204);" width="110">+0<font class="font5"><sup>1,
3</sup></font></td>
</tr>
<tr style="height: 15pt;" height="20">
<td class="xl26" style="height: 15pt; width: 135pt; text-align: center; background-color: white;" height="20" width="180">Intralciato</td>
<td class="xl27" style="width: 83pt; text-align: center; background-color: white;" x:num="" width="110">+0<font class="font5"><sup>2</sup></font></td>
<td class="xl27" style="width: 83pt; text-align: center; background-color: white;" x:num="" width="110">+0<font class="font5"><sup>2</sup></font></td>
</tr>
<tr style="height: 15pt;" height="20">
<td class="xl26" style="height: 15pt; width: 135pt; text-align: center; background-color: rgb(204, 204, 204);" height="20" width="180">Occultato o invisibile</td>
<td colspan="2" class="xl27" style="width: 166pt; text-align: center; background-color: rgb(204, 204, 204);" width="220">—
Vedi Occultamento —</td>
</tr>
<tr style="height: 15pt;" height="20">
<td class="xl26" style="height: 15pt; width: 135pt; text-align: center; background-color: white;" height="20" width="180">Prono</td>
<td class="xl27" style="width: 83pt; text-align: center; background-color: white;" width="110">–4</td>
<td class="xl27" style="width: 83pt; text-align: center; background-color: white;" x:num="" width="110">+0<font class="font5"><sup>4</sup></font></td>
</tr>
<tr style="height: 15pt;" height="20">
<td class="xl26" style="height: 15pt; width: 135pt; text-align: center; background-color: rgb(204, 204, 204);" height="20" width="180">Ristretto in uno spazio</td>
<td class="xl27" style="width: 83pt; text-align: center; background-color: rgb(204, 204, 204);" width="110">–4</td>
<td class="xl27" style="width: 83pt; text-align: center; background-color: rgb(204, 204, 204);" width="110">–4</td>
</tr>
<tr style="height: 15pt;" height="20">
<td class="xl26" style="height: 15pt; width: 135pt; text-align: center; background-color: white;" height="20" width="180">Stordito</td>
<td class="xl27" style="width: 83pt; text-align: center; background-color: white;" width="110">–2<font class="font5"><sup>1</sup></font></td>
<td class="xl27" style="width: 83pt; text-align: center; background-color: white;" width="110">–2<font class="font5"><sup>1</sup></font></td>
</tr>
<tr style="height: 15pt;" height="20">
<td class="xl26" style="height: 15pt; width: 135pt; text-align: center; background-color: rgb(204, 204, 204);" height="20" width="180">Tremante</td>
<td class="xl27" style="width: 83pt; text-align: center; background-color: rgb(204, 204, 204);" width="110">–2<font class="font5"><sup>1</sup></font></td>
<td class="xl27" style="width: 83pt; text-align: center; background-color: rgb(204, 204, 204);" width="110">–2<font class="font5"><sup>1</sup></font></td>
</tr>
<tr style="height: 15pt; " align="justify" height="20">
<td colspan="3" class="xl26" style="height: 15pt; width: 301pt;" height="20" width="400"><font class="font5"><sup>1</sup></font><small>
Il difensore perde qualunque bonus alla CA derivante dalla Destrezza.</small></td>
</tr>
<tr style="height: 15pt; " align="justify" height="20">
<td colspan="3" class="xl26" style="height: 15pt; width: 301pt;" height="20" width="400"><font class="font5"><sup>2</sup></font><small> Un
personaggio intralciato subisce una penalità di –4 alla Destrezza.</small></td>
</tr>
<tr style="height: 15pt; " align="justify" height="20">
<td colspan="3" class="xl26" style="height: 15pt; width: 301pt;" height="20" width="400"><font class="font5"><sup>3</sup></font><small>
</small><small>Si effettua un tiro casuale per
determinare quale tra i
combattenti in lotta viene colpiti. Il difensore perde qualunque bonus
alla CA derivante dalla Destrezza.</small></td>
</tr>
<tr style="height: 15pt; " align="justify" height="20">
<td colspan="3" class="xl26" style="height: 15pt; width: 301pt;" height="20" width="400"><font class="font5"><sup>4</sup></font><small>
Si consideri la Destrezza del difenore uguale a 0 (modificatore –5). I
ladri possono sferrare attacchi furtivi contro difensori indifesi o
immobilizzati.</small></td>
</tr>
</tbody>
</table><table x:str="" style="border-collapse: collapse; width: 100%; height: 282px;" border="0" cellpadding="0" cellspacing="0">
<col style="width: 135pt;" width="180"> <col span="2" style="width: 83pt;" width="110"> <tbody>
<tr style="height: 15pt; font-family: Scala Sans-Blk; color: white;" height="20">
<td colspan="3" class="xl24" style="height: 15pt; width: 301pt; text-align: center; background-color: black;"><a name="Attack_Roll_Modifiers"></a>Modificatori al Tiro
di Attacco</td>
</tr>
<tr style="height: 15pt;" height="20">
<td class="xl24" style="height: 15pt; width: 135pt; font-weight: bold; text-align: center;" height="20" width="180">L'Attaccante è . . .</td>
<td class="xl25" style="width: 83pt; font-weight: bold; text-align: center;" width="110">In Mischia</td>
<td class="xl25" style="width: 83pt; font-weight: bold; text-align: center;" width="110">A Distanza</td>
</tr>
<tr style="height: 15pt;" height="20">
<td class="xl26" style="height: 15pt; width: 135pt; background-color: rgb(204, 204, 204); text-align: center;" height="20" width="180">Abbagliato</td>
<td class="xl27" style="width: 83pt; background-color: rgb(204, 204, 204); text-align: center;" width="110">–1</td>
<td class="xl27" style="width: 83pt; background-color: rgb(204, 204, 204); text-align: center;" width="110">–1</td>
</tr>
<tr style="height: 15pt;" height="20">
<td class="xl26" style="height: 15pt; width: 135pt; text-align: center;" height="20" width="180">Ai fianchi del difensore</td>
<td class="xl27" style="width: 83pt; text-align: center;" width="110">+2</td>
<td class="xl27" style="width: 83pt; text-align: center;" width="110">—</td>
</tr>
<tr style="height: 15pt;" height="20">
<td class="xl26" style="height: 15pt; width: 135pt; background-color: rgb(204, 204, 204); text-align: center;" height="20" width="180">Intralciato</td>
<td class="xl27" style="width: 83pt; background-color: rgb(204, 204, 204); text-align: center;" x:num="" width="110">–2<font class="font5"><sup>1</sup></font></td>
<td class="xl27" style="width: 83pt; background-color: rgb(204, 204, 204); text-align: center;" width="110">–2<font class="font5"><sup>1</sup></font></td>
</tr>
<tr style="height: 15pt;" height="20">
<td class="xl26" style="height: 15pt; width: 135pt; text-align: center;" height="20" width="180">Invisibile</td>
<td class="xl27" style="width: 83pt; text-align: center;" x:num="" width="110">+2<font class="font5"><sup>2</sup></font></td>
<td class="xl27" style="width: 83pt; text-align: center;" x:num="" width="110">+2<font class="font5"><sup>2</sup></font></td>
</tr>
<tr style="height: 15pt;" height="20">
<td class="xl26" style="height: 15pt; width: 135pt; background-color: rgb(204, 204, 204); text-align: center;" height="20" width="180">In posizione sopraelevata</td>
<td class="xl27" style="width: 83pt; background-color: rgb(204, 204, 204); text-align: center;" x:num="" width="110">1</td>
<td class="xl27" style="width: 83pt; background-color: rgb(204, 204, 204); text-align: center;" x:num="" width="110">0</td>
</tr>
<tr style="height: 15pt;" height="20">
<td class="xl26" style="height: 15pt; width: 135pt; text-align: center;" height="20" width="180">Prono</td>
<td class="xl27" style="width: 83pt; text-align: center;" width="110">–4</td>
<td class="xl27" style="width: 83pt; text-align: center;" width="110">—<font class="font5"><sup>3</sup></font></td>
</tr>
<tr style="height: 15pt;" height="20">
<td class="xl26" style="height: 15pt; width: 135pt; background-color: rgb(204, 204, 204); text-align: center;" height="20" width="180">Ristretto in uno spazio</td>
<td class="xl27" style="width: 83pt; background-color: rgb(204, 204, 204); text-align: center;" width="110">–4</td>
<td class="xl27" style="width: 83pt; background-color: rgb(204, 204, 204); text-align: center;" width="110">–4</td>
</tr>
<tr style="height: 15pt;" height="20">
<td class="xl26" style="height: 15pt; width: 135pt; text-align: center;" height="20" width="180">Scosso o spaventato</td>
<td class="xl27" style="width: 83pt; text-align: center;" width="110">–2</td>
<td class="xl27" style="width: 83pt; text-align: center;" width="110">–2</td>
</tr>
<tr style="height: 15pt; " align="justify" height="20">
<td colspan="3" class="xl26" style="height: 15pt; width: 301pt;" height="20" width="400"><font class="font5"><sup>1</sup></font><small>
Un personaggio intralciato subisce inoltre una penalità di –4 alla
Destezza, che può influenzare il suo tiro per colpire.</small></td>
</tr>
<tr style="height: 15pt; " align="justify" height="20">
<td colspan="3" class="xl29" style="height: 15pt; width: 301pt;" height="20" width="400"><font class="font5"><sup>2</sup></font><small> </small><small>Il
difensore perde qualunque bonus alla CA derivante dalla Destrezza</small><small>.
Questo bonus non si applica se il bersaglio è accecato.</small></td>
</tr>
<tr style="height: 15pt; " align="justify" height="51">
<td colspan="3" class="xl26" style="width: 301pt; height: 16px;" width="400"><font class="font5"><sup>3</sup></font><small>
Molte armi a distanza non si possono usare finchè si è proni, ma si può
usare una balestra o le shuriken senza penalità mentre si è in una tale
posizione.</small></td>
</tr>
</tbody>
</table><table x:str="" style="border-collapse: collapse; width: 100%; height: 100%;" border="0" cellpadding="0" cellspacing="0">
<col style="width: 135pt;" width="180"> <col span="2" style="width: 83pt;" width="110"> <tbody>
<tr style="height: 12.75pt; font-family: Scala Sans-Blk; color: white;" height="17">
<td colspan="3" class="xl24" style="height: 12.75pt; width: 301pt; text-align: center; background-color: black;"><a name="Two-Weapon_Fighting_Penalties"></a>Penalità nel
Combattere con Due Armi</td>
</tr>
<tr style="height: 12.75pt;" height="17">
<td class="xl24" style="height: 12.75pt; width: 135pt; font-weight: bold; text-align: center;" height="17" width="180">Circostanze</td>
<td class="xl25" style="width: 83pt; font-weight: bold; text-align: center;" width="110">Mano Primaria</td>
<td class="xl25" style="width: 83pt; font-weight: bold; text-align: center;" width="110">Mano Secondaria</td>
</tr>
<tr style="height: 12.75pt;" height="17">
<td class="xl26" style="height: 12.75pt; width: 135pt; background-color: rgb(204, 204, 204); text-align: center;" height="17" width="180">Penalità normale</td>
<td class="xl27" style="width: 83pt; background-color: rgb(204, 204, 204); text-align: center;" width="110">–6</td>
<td class="xl27" style="width: 83pt; background-color: rgb(204, 204, 204); text-align: center;" width="110">–10</td>
</tr>
<tr style="height: 12.75pt;" height="17">
<td class="xl26" style="height: 12.75pt; width: 135pt; text-align: center;" height="17" width="180">L'arma nella mano secondaria
è leggera</td>
<td class="xl27" style="width: 83pt; text-align: center;" width="110">–4</td>
<td class="xl27" style="width: 83pt; text-align: center;" width="110">–8</td>
</tr>
<tr style="height: 12.75pt;" height="17">
<td class="xl26" style="height: 12.75pt; width: 135pt; background-color: rgb(204, 204, 204); text-align: center;" height="17" width="180">Talento Combattere con Due
Armi</td>
<td class="xl27" style="width: 83pt; background-color: rgb(204, 204, 204); text-align: center;" width="110">–4</td>
<td class="xl27" style="width: 83pt; background-color: rgb(204, 204, 204); text-align: center;" width="110">–4</td>
</tr>
<tr style="height: 25.5pt;" height="34">
<td class="xl26" style="height: 25.5pt; width: 135pt; text-align: center;" height="34" width="180">L'arma nella mano secondaria
è leggera e Talento Combattere con Due Armi</td>
<td class="xl27" style="width: 83pt; text-align: center;" width="110">–2</td>
<td class="xl27" style="width: 83pt; text-align: center;" width="110">–2</td>
</tr>
</tbody>
</table><table x:str="" style="border-collapse: collapse; width: 100%; height: 100%;" border="0" cellpadding="0" cellspacing="0">
<col style="width: 203pt;" width="270"> <col style="width: 98pt;" width="130"> <tbody>
<tr style="height: 15pt; color: white; font-family: Scala Sans-Blk;" height="20">
<td colspan="2" class="xl26" style="height: 15pt; text-align: center; width: 356px; background-color: black;"><a name="Turning_Undead"></a>Scacciare Non Morti</td>
</tr>
<tr style="height: 15pt;" height="20">
<td class="xl24" style="height: 15pt; font-weight: bold; width: 142px; text-align: center;" height="20">Risultato della Prova di Scacciare</td>
<td style=" font-weight: bold; width: 356px; text-align: center;" colspan="1" rowspan="1">Più Potente Non Morto
Influenzato
( Dado Vita Massimo)</td>
</tr>
<tr style="height: 15pt;" height="20">
<td class="xl25" style="height: 12.75pt; width: 142px; background-color: rgb(204, 204, 204); text-align: center;" height="17">0 o meno</td>
<td style=" width: 356px; background-color: rgb(204, 204, 204); text-align: center;" colspan="1" rowspan="1">Livello del chierico – 4</td>
</tr>
<tr style="height: 15pt;" height="20">
<td class="xl25" style="height: 15pt; width: 142px; text-align: center;" height="20">1–3</td>
<td style=" width: 356px; text-align: center;" colspan="1" rowspan="1">Livello del chierico – 3</td>
</tr>
<tr style="height: 15pt;" height="20">
<td class="xl25" style="height: 15pt; width: 142px; background-color: rgb(204, 204, 204); text-align: center;" height="20">4–6</td>
<td style=" width: 356px; background-color: rgb(204, 204, 204); text-align: center;" colspan="1" rowspan="1">Livello del
chierico –
2</td>
</tr>
<tr style="height: 15pt;" height="20">
<td class="xl25" style="height: 15pt; width: 142px; text-align: center;" height="20">7–9</td>
<td style=" width: 356px; text-align: center;" colspan="1" rowspan="1">Livello del chierico – 1</td>
</tr>
<tr style="height: 1pt;" height="20">
<td class="xl25" style="height: 15pt; width: 142px; background-color: rgb(204, 204, 204); text-align: center;" height="20">10–12</td>
<td style=" width: 356px; background-color: rgb(204, 204, 204); text-align: center;" colspan="1" rowspan="1">Livello del chierico</td>
</tr>
<tr style="height: 15pt;" height="20">
<td class="xl25" style="height: 15pt; width: 142px; text-align: center;" height="20">13–15</td>
<td style=" width: 356px; text-align: center;" colspan="1" rowspan="1">Livello del
chierico +
1</td>
</tr>
<tr style="height: 15pt;" height="20">
<td class="xl25" style="height: 15pt; width: 142px; background-color: rgb(204, 204, 204); text-align: center;" height="20">16–18</td>
<td style=" width: 356px; background-color: rgb(204, 204, 204); text-align: center;" colspan="1" rowspan="1">Livello del
chierico +
2</td>
</tr>
<tr style="height: 15pt;" height="20">
<td class="xl25" style="height: 15pt; width: 142px; text-align: center;" height="20">19–21</td>
<td style=" width: 356px; text-align: center;" colspan="1" rowspan="1">Livello del
chierico +
3</td>
</tr>
<tr style="height: 15pt;" height="20">
<td class="xl25" style="height: 15pt; width: 142px; background-color: rgb(204, 204, 204); text-align: center;" height="20">22 o più</td>
<td style=" width: 356px; background-color: rgb(204, 204, 204); text-align: center;" colspan="1" rowspan="1">Livello del
chierico +
4</td>
</tr>
</tbody>
</table><table x:str="" style="border-collapse: collapse; width: 100%; height: 316px;" border="0" cellpadding="0" cellspacing="0">
<col style="width: 135pt;" width="180"> <col span="2" style="width: 83pt;" width="110"> <tbody>
<tr style="height: 15pt; font-family: Scala Sans-Blk; color: white;" height="20">
<td colspan="3" class="xl24" style="height: 15pt; width: 301pt; text-align: center; background-color: black;"><a name="Creature_Size_and_Scale"></a>Taglia e Scala
delle Creature</td>
</tr>
<tr style="height: 15pt;" height="20">
<td class="xl24" style="height: 15pt; width: 135pt; font-weight: bold; text-align: center;">Taglia
della Creatura</td>
<td class="xl25" style="width: 83pt; font-weight: bold; text-align: center;">Spazio<font class="font5"><sup>1</sup></font></td>
<td class="xl25" style="width: 83pt; font-weight: bold; text-align: center;">Portata
Naturale<font class="font5"><sup>1</sup></font></td>
</tr>
<tr style="height: 15pt;" height="20">
<td class="xl26" style="height: 15pt; width: 135pt; text-align: center; background-color: rgb(204, 204, 204);">Piccolissima</td>
<td class="xl27" style="width: 83pt; text-align: center; background-color: rgb(204, 204, 204);">15
cm</td>
<td class="xl27" x:num="" style="width: 83pt; text-align: center; background-color: rgb(204, 204, 204);">0</td>
</tr>
<tr style="height: 15pt;" height="20">
<td class="xl26" style="height: 15pt; width: 135pt; text-align: center;">Minuta</td>
<td class="xl27" style="width: 83pt; text-align: center;">30
cm</td>
<td class="xl27" x:num="" style="width: 83pt; text-align: center;">0</td>
</tr>
<tr style="height: 15pt;" height="20">
<td class="xl26" style="height: 15pt; width: 135pt; text-align: center; background-color: rgb(204, 204, 204);">Minuscola</td>
<td class="xl27" style="width: 83pt; text-align: center; background-color: rgb(204, 204, 204);">75
cm</td>
<td class="xl27" x:num="" style="width: 83pt; text-align: center; background-color: rgb(204, 204, 204);">0</td>
</tr>
<tr style="height: 15pt;" height="20">
<td class="xl26" style="height: 15pt; width: 135pt; text-align: center;">Piccola</td>
<td class="xl27" style="width: 83pt; text-align: center;">1,5
m</td>
<td class="xl27" style="width: 83pt; text-align: center;">1,5
m</td>
</tr>
<tr style="height: 15pt;" height="20">
<td class="xl26" style="height: 15pt; width: 135pt; text-align: center; background-color: rgb(204, 204, 204);">Media</td>
<td class="xl27" style="width: 83pt; text-align: center; background-color: rgb(204, 204, 204);">1,5
m</td>
<td class="xl27" style="width: 83pt; text-align: center; background-color: rgb(204, 204, 204);">1,5
m</td>
</tr>
<tr style="height: 15pt;" height="20">
<td class="xl26" style="height: 15pt; width: 135pt; text-align: center;">Grande
(altezza)</td>
<td class="xl27" style="width: 83pt; text-align: center;">3
m</td>
<td class="xl27" style="width: 83pt; text-align: center;">3
m</td>
</tr>
<tr style="height: 15pt;" height="20">
<td class="xl26" style="height: 15pt; width: 135pt; text-align: center; background-color: rgb(204, 204, 204);">Grande
(lunghezza)</td>
<td class="xl27" style="width: 83pt; text-align: center; background-color: rgb(204, 204, 204);">3
m</td>
<td class="xl27" style="width: 83pt; text-align: center; background-color: rgb(204, 204, 204);">1,5
m</td>
</tr>
<tr style="height: 15pt;" height="20">
<td class="xl26" style="height: 15pt; width: 135pt; text-align: center;">Enorme
(altezza)</td>
<td class="xl27" style="width: 83pt; text-align: center;">4,5
m</td>
<td class="xl27" style="width: 83pt; text-align: center;">4,5
m</td>
</tr>
<tr style="height: 15pt;" height="20">
<td class="xl26" style="height: 15pt; width: 135pt; text-align: center; background-color: rgb(204, 204, 204);">Enorme
(lunghezza)</td>
<td class="xl27" style="width: 83pt; text-align: center; background-color: rgb(204, 204, 204);">4,5
m</td>
<td class="xl27" style="width: 83pt; text-align: center; background-color: rgb(204, 204, 204);">3
m</td>
</tr>
<tr style="height: 15pt;" height="20">
<td class="xl26" style="height: 15pt; width: 135pt; text-align: center;">Mastodontica
(altezza)</td>
<td class="xl27" style="width: 83pt; text-align: center;">6
m</td>
<td class="xl27" style="width: 83pt; text-align: center;">6
m</td>
</tr>
<tr style="height: 15pt;" height="20">
<td class="xl26" style="height: 15pt; width: 135pt; text-align: center; background-color: rgb(204, 204, 204);">Mastodontica
(lunghezza)</td>
<td class="xl27" style="width: 83pt; text-align: center; background-color: rgb(204, 204, 204);">6
m</td>
<td class="xl27" style="width: 83pt; text-align: center; background-color: rgb(204, 204, 204);">4,5
m</td>
</tr>
<tr style="height: 15pt;" height="20">
<td class="xl26" style="height: 15pt; width: 135pt; text-align: center;">Colossale
(altezza)</td>
<td class="xl27" style="width: 83pt; text-align: center;">9
m</td>
<td class="xl27" style="width: 83pt; text-align: center;">9
m</td>
</tr>
<tr style="height: 15pt;" height="20">
<td class="xl26" style="height: 15pt; width: 135pt; text-align: center; background-color: rgb(204, 204, 204);">Colossale
(lunghezza)</td>
<td class="xl27" style="width: 83pt; text-align: center; background-color: rgb(204, 204, 204);">9
m</td>
<td class="xl27" style="width: 83pt; text-align: center; background-color: rgb(204, 204, 204);">6
m</td>
</tr>
<tr style="height: 15pt; " height="20">
<td colspan="3" rowspan="2" class="xl26" style="width: 301pt; height: 12px;"><font class="font5"><sup>1</sup></font><small>
Questi valori sono quelli tipici delle creature della taglia indicata.
Esistono alcune eccezioni.</small></td>
</tr>
</tbody>
</table><table x:str="" style="border-collapse: collapse; width: 100%; height: 100%;" border="0" cellpadding="0" cellspacing="0">
<col style="width: 135pt;" width="180"> <col span="2" style="width: 83pt;" width="110"> <tbody>
<tr style="height: 15pt; font-family: Scala Sans-Blk; color: white;" height="20">
<td colspan="3" class="xl24" style="height: 15pt; text-align: center; width: 169px; background-color: black;"><a name="Tactical_Speed"></a>Velocità Tattica</td>
</tr>
<tr style="height: 15pt;" height="20">
<td class="xl24" style="height: 15pt; font-weight: bold; width: 161px; text-align: center;" x:str="Race " height="20">Razza<span style=""> </span></td>
<td class="xl26" style=" font-weight: bold; width: 169px; text-align: center;">Senza
Armatura o Armatura Leggera</td>
<td class="xl26" style=" font-weight: bold; width: 167px; text-align: center;">Armatura
Media o Pesante</td>
</tr>
<tr style="height: 15pt;" height="20">
<td class="xl25" style="height: 15pt; width: 161px; background-color: rgb(204, 204, 204); text-align: center;" height="20">Elfo, mezzelfo, mezzorco, umano</td>
<td class="xl25" style=" width: 169px; background-color: rgb(204, 204, 204); text-align: center;">9
m (6 quadretti)</td>
<td class="xl25" style=" width: 167px; background-color: rgb(204, 204, 204); text-align: center;">6
m (4 quadretti)</td>
</tr>
<tr style="height: 15pt;" height="20">
<td class="xl25" style="height: 15pt; width: 161px; text-align: center;" height="20">Halfling, gnomo</td>
<td class="xl25" style=" width: 169px; text-align: center;">6
m (4 quadretti)</td>
<td class="xl25" style=" width: 167px; text-align: center;">4,5
m (3 quadretti)</td>
</tr>
<tr style="height: 15pt;" height="20">
<td class="xl25" style="height: 15pt; width: 161px; background-color: rgb(204, 204, 204); text-align: center;" height="20">Nano</td>
<td class="xl25" style=" width: 169px; background-color: rgb(204, 204, 204); text-align: center;">6
m (4 quadretti)</td>
<td class="xl25" style=" width: 167px; background-color: rgb(204, 204, 204); text-align: center;">6
m (4 quadretti)</td>
</tr>
</tbody>
</table><table x:str="" style="border-collapse: collapse; width: 100%; height: 100%;" border="0" cellpadding="0" cellspacing="0">
<col style="width: 87pt;" width="116"> <col style="width: 37pt;" width="49"> <col style="width: 68pt;" width="90"> <col style="width: 68pt;" width="91"> <tbody>
<tr style="height: 15pt; color: white; font-family: Scala Sans-Blk;" height="20">
<td colspan="4" style="height: 15pt; width: 151px; text-align: center; background-color: black;"><a name="Skills"></a>Abilità</td>
</tr>
<tr style="height: 15pt;" height="20">
<td style="height: 15pt; width: 500px; text-align: center; font-weight: bold;" height="20">Abilità</td>
<td style="width: 151px; text-align: center; font-weight: bold;">Caratteristica</td>
<td style="width: 151px; text-align: center; font-weight: bold;">Solo
con Addestramento</td>
<td style="width: 151px; text-align: center; font-weight: bold;">Penalità
da Armatura</td>
</tr>
<tr style="height: 15pt;" height="20">
<td style="height: 15pt; width: 500px; text-align: center; background-color: rgb(204, 204, 204);" height="20">Acrobazia</td>
<td style="width: 151px; text-align: center; background-color: rgb(204, 204, 204);">Des</td>
<td style="width: 151px; text-align: center; background-color: rgb(204, 204, 204);">No</td>
<td style="width: 151px; text-align: center; background-color: rgb(204, 204, 204);">Sì</td>
</tr>
<tr style="height: 15pt;" height="20">
<td style="height: 15pt; width: 500px; text-align: center; background-color: white;" height="20">Addestrare Animali</td>
<td style="width: 151px; text-align: center; background-color: white;">Car</td>
<td style="width: 151px; text-align: center; background-color: white;">Sì</td>
<td style="width: 151px; text-align: center; background-color: white;">No</td>
</tr>
<tr style="height: 15pt;" height="20">
<td style="height: 15pt; width: 500px; text-align: center; background-color: rgb(204, 204, 204);" height="20">Artigianato</td>
<td style="width: 151px; text-align: center; background-color: rgb(204, 204, 204);">Int</td>
<td style="width: 151px; text-align: center; background-color: rgb(204, 204, 204);">No</td>
<td style="width: 151px; text-align: center; background-color: rgb(204, 204, 204);">No</td>
</tr>
<tr style="height: 15pt;" height="20">
<td style="height: 15pt; width: 500px; text-align: center; background-color: white;" height="20">Artista della Fuga</td>
<td style="width: 151px; text-align: center; background-color: white;">Des</td>
<td style="width: 151px; text-align: center; background-color: white;">No</td>