-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathindex.html
2714 lines (2713 loc) · 143 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
Para informações, acesse: https://github.com/bibliotecaelfica/bibliotecaelfica.github.io/
<div style="text-align: center;">
<img border="0" height="35" src="https://2.bp.blogspot.com/-iNiJQYvJ2lg/UiClc76894I/AAAAAAAAAyM/kDk5dKOd0nM/s400/text-divider.png" width="400"/></div>
<div style="text-align: center;">
<img border="0" height="100" src="https://1.bp.blogspot.com/-3gc_58x2hjc/UmgaypornNI/AAAAAAAABRE/691m89Kf5R0/s200/fighting+fantasy.png" width="200"/></div>
<a href="https://github.com/bibliotecaelfica/bibliotecaelfica.github.io/raw/master/Files/Aventuras%20Fanta%CC%81sticas/01%20-%20A%20Cidadela%20do%20Caos.pdf">Fighting Fantasy 01 - A Cidadela do Caos<br/></a>
<div>
<a href="https://github.com/bibliotecaelfica/bibliotecaelfica.github.io/raw/master/Files/Aventuras%20Fanta%CC%81sticas/02%20-%20O%20Feiticeiro%20da%20Montanha%20de%20Fogo.pdf">Fighting Fantasy 02 - O Feiticeiro da Montanha de Fogo<br/></a>
<a href="https://github.com/bibliotecaelfica/bibliotecaelfica.github.io/raw/master/Files/Aventuras%20Fanta%CC%81sticas/03%20-%20A%20Floresta%20da%20Destruic%CC%A7a%CC%83o.pdf">Fighting Fantasy 03 - A Floresta da Destruição<br/></a>
<a href="https://github.com/bibliotecaelfica/bibliotecaelfica.github.io/raw/master/Files/Aventuras%20Fanta%CC%81sticas/04%20-%20A%20Cidade%20dos%20Ladro%CC%83es.pdf">Fighting Fantasy 04 - A Cidade dos Ladrões<br/></a>
<a href="https://github.com/bibliotecaelfica/bibliotecaelfica.github.io/blob/master/Files/Aventuras%20Fanta%CC%81sticas/05%20-%20O%20Calabouc%CC%A7o%20da%20Morte.pdf">Fighting Fantasy 05 - O Calabouço da Morte<br/></a>
<a href="https://github.com/bibliotecaelfica/bibliotecaelfica.github.io/raw/master/Files/Aventuras%20Fanta%CC%81sticas/06%20-%20A%20Nave%20Espacial%20Traveller.pdf">Fighting Fantasy 06 - A Nave Espacial Traveller<br/></a>
<a href="https://github.com/bibliotecaelfica/bibliotecaelfica.github.io/raw/master/Files/Aventuras%20Fanta%CC%81sticas/07%20-%20O%20Templo%20do%20Terror.pdf">Fighting Fantasy 07 - O Templo do Terror<br/></a>
<a href="https://github.com/bibliotecaelfica/bibliotecaelfica.github.io/raw/master/Files/Aventuras%20Fanta%CC%81sticas/08%20-%20As%20Coligac%CC%A7o%CC%83es%20de%20Kether.pdf">Fighting Fantasy 08 - As Coligações de Kether<br/></a>
<a href="https://github.com/bibliotecaelfica/bibliotecaelfica.github.io/raw/master/Files/Aventuras%20Fanta%CC%81sticas/09%20-%20Mares%20de%20Sangue.pdf">Fighting Fantasy 09 - Mares de Sangue<br/></a>
Fighting Fantasy 10 - Encontro Marcado com o M.E.D.O.<br/>
<a href="https://github.com/bibliotecaelfica/bibliotecaelfica.github.io/raw/master/Files/Aventuras%20Fanta%CC%81sticas/11%20-%20Planeta%20Rebelde.pdf">Fighting Fantasy 11 - Planeta Rebelde<br/></a>
<a href="https://github.com/bibliotecaelfica/bibliotecaelfica.github.io/raw/master/Files/Aventuras%20Fanta%CC%81sticas/13%20-%20A%20Cripta%20Do%20Vampiro.pdf">Fighting Fantasy 13 - A Cripta do Vampiro<br/></a>
<a href="https://github.com/bibliotecaelfica/bibliotecaelfica.github.io/raw/master/Files/Aventuras%20Fanta%CC%81sticas/14%20-%20Robo%CC%82%20Comando.pdf">Fighting Fantasy 14 - Robô Comando<br/></a>
<a href="https://github.com/bibliotecaelfica/bibliotecaelfica.github.io/raw/master/Files/Aventuras%20Fanta%CC%81sticas/15%20-%20Prova%20Dos%20Campeo%CC%83es.pdf">Fighting Fantasy 15 - Prova dos Campeões<br/></a>
<a href="https://github.com/bibliotecaelfica/bibliotecaelfica.github.io/raw/master/Files/Aventuras%20Fanta%CC%81sticas/19%20-%20O%20Ladra%CC%83o%20Da%20Meia%20Noite.pdf">Fighting Fantasy 19 - Ladrão da Meia Noite<br/></a>
<a href="https://github.com/bibliotecaelfica/bibliotecaelfica.github.io/raw/master/Files/Aventuras%20Fanta%CC%81sticas/21%20-%20Fantasmas%20do%20Medo.pdf">Fighting Fantasy 21 - Fantasmas do Medo<br/></a>
<a href="https://github.com/bibliotecaelfica/bibliotecaelfica.github.io/raw/master/Files/Aventuras%20Fanta%CC%81sticas/25%20-%20A%20Cripta%20do%20Feiticeiro.pdf">Fighting Fantasy 25 - A Cripta do Feiticeiro<br/></a>
Fighting Fantasy - Aventuras Fantásticas RPG<br/>
Fighting Fantasy - Ficha de Aventura<br/>
Fighting Fantasy - Ficha de Aventura 2<br/>
<a href="https://github.com/bibliotecaelfica/bibliotecaelfica.github.io/raw/master/Files/Aventuras%20Fanta%CC%81sticas/Fu%CC%81ria%20de%20Pri%CC%81ncipes%20-O%20Caminho%20do%20Feiticeiro.pdf">Fighting Fantasy - Fúria de Príncipes - O Caminho do Feiticeiro<br/></a>
Fighting Fantasy - Fúria de Príncipes - O Caminho do Guerreiro<br/>
Fighting Fantasy - O Pântano do Escorpião<br/>
Fighting Fantasy - O Saqueador de Charadas<br/>
<a href="http://www.mediafire.com/file/kb7n1t6xn0ij6ji/out_of_the_pit.pdf/file">Fighting Fantasy - Out of the Pit - 250 Monstros<br/></a>
Fighting Fantasy - Titan - O Mundo de Aventuras Fantásticas<br/>
Fighting Fantasy D20 - O Feiticeiro da Montanha de Fogo<br/>
Fighting Fantasy D20 - As Cavernas da Feiticeira da Neve<br/>
<a href="http://www.mediafire.com/file/lt7xdwbbndqdwbk/blacksand%2521.pdf/file">Advanced Fighting Fantasy - Blacksand<br/></a>
<a href="http://www.mediafire.com/file/dsz8pbkld6v8dwp/Dungeoneer.pdf">Advanced Fighting Fantasy - Dungeoneer<br/></a>
<a href="https://github.com/bibliotecaelfica/bibliotecaelfica.github.io/raw/master/Files/Aventuras%20Fanta%CC%81sticas/Advenced%20Fighting%20Fantasy/Fichas/Advanced%20Fighting%20Fantasy%20-%20Folha%20de%20Aventuras%20-%20Biblioteca%20E%CC%81lfica.jpg">Advanced Fighting Fantasy - Folha de Aventuras<br/></a>
<a href="https://github.com/bibliotecaelfica/bibliotecaelfica.github.io/raw/master/Files/Aventuras%20Fanta%CC%81sticas/Advenced%20Fighting%20Fantasy/Fichas/Advanced%20Fighting%20Fantasy%20-%20Folha%20de%20Aventuras%202%20-%20Biblioteca%20E%CC%81lfica.pdf">Advanced Fighting Fantasy - Folha de Aventuras 2<br/></a>
<a href="https://github.com/bibliotecaelfica/bibliotecaelfica.github.io/raw/master/Files/Aventuras%20Fanta%CC%81sticas/Advenced%20Fighting%20Fantasy/Fichas/Advanced%20Fighting%20Fantasy%20-%20Folha%20de%20Aventuras%203%20-%20Biblioteca%20E%CC%81lfica.jpg">Advanced Fighting Fantasy - Folha de Aventuras 3<br/></a>
<a href="https://github.com/bibliotecaelfica/bibliotecaelfica.github.io/raw/master/Files/Aventuras%20Fanta%CC%81sticas/Advenced%20Fighting%20Fantasy/Advanced%20Fighting%20Fantasy%20-%20O%20Feiticeiro%20da%20Montanha%20de%20Fogo%20-%20Biblioteca%20E%CC%81lfica.pdf">Advanced Fighting Fantasy - O Feiticeiro da Montanha de Fogo<br/></a>
<a href="https://github.com/bibliotecaelfica/bibliotecaelfica.github.io/raw/master/Files/Aventuras%20Fanta%CC%81sticas/Advenced%20Fighting%20Fantasy/Advanced%20Fighting%20Fantasy%20-%20Regras%20Ba%CC%81sicas%20-%20Biblioteca%20E%CC%81lfica.pdf">Advanced Fighting Fantasy - Regras Básicas<br/><a/>
<a href="https://github.com/bibliotecaelfica/bibliotecaelfica.github.io/raw/master/Files/Aventuras%20Fanta%CC%81sticas/Advenced%20Fighting%20Fantasy/Advanced%20Fighting%20Fantasy%20-%20Regras%20Ba%CC%81sicas%20Alternativas%20-%20Biblioteca%20E%CC%81lfica.pdf">Advanced Fighting Fantasy - Regras Básicas Alternativas<br/><a/>
Advanced Fighting Fantasy - Regras Básicas - Versão 2<br/>
<a href="https://github.com/bibliotecaelfica/bibliotecaelfica.github.io/raw/master/Files/Aventuras%20Fanta%CC%81sticas/Advenced%20Fighting%20Fantasy/Advanced%20Fighting%20Fantasy%20-%20Tabelas%20de%20Armas%20-%20Biblioteca%20E%CC%81lfica.pdf">Advanced Fighting Fantasy - Tabelas de Armas<br/></a>
<a href="https://github.com/bibliotecaelfica/bibliotecaelfica.github.io/raw/master/Files/Aventuras%20Fanta%CC%81sticas/Advenced%20Fighting%20Fantasy/Advanced%20Fighting%20Fantasy%20-%20Tesouros%20de%20Allansia%20-%20Biblioteca%20E%CC%81lfica.pdf">Advanced Fighting Fantasy - Tesouros de Allansia<br/></a>
<div class="separator" style="clear: both; text-align: center;">
<img border="0" height="65" src="https://1.bp.blogspot.com/-i6RvoXfTsy4/VMziEF9aRfI/AAAAAAAAF24/x2L2Vimhlcg/s1600/316%2BLogo.png" width="320"/></div>
<div class="separator" style="clear: both; text-align: center;">
</div>
<div class="separator" style="clear: both; text-align: left;">
</div>
<div class="separator" style="clear: both; text-align: left;">
3:16 Carnificina Entre as Estrelas - Ascensão</div>
<div class="separator" style="clear: both; text-align: left;">
3:16 Carnificina Entre as Estrelas - Resumo de Regras</div>
<div class="separator" style="clear: both; text-align: left;">
3-16 Carnificina Entre as Estrelas - Tropas Estelares - Destacamento Bravo</div>
<div class="separator" style="clear: both; text-align: left;">
3-16 Carnificina Entre as Estrelas - Tropas Estelares - Itens Extras</div>
<div class="separator" style="clear: both; text-align: left;">
3-16 Carnificina Entre as Estrelas - Tropas Estelares - Patrulha de Rotina</div>
<div class="separator" style="clear: both; text-align: left;">
3:16 Carnificina nas Masmorras</div>
<div class="separator" style="clear: both; text-align: left;">
3:16 Carnificina nas Masmorras - Caminhos Escuros</div>
<img border="0" height="35" src="https://2.bp.blogspot.com/-iNiJQYvJ2lg/UiClc76894I/AAAAAAAAAyM/kDk5dKOd0nM/s400/text-divider.png" width="400"/><br/>
<div class="separator" style="clear: both; text-align: center;">
<img border="0" height="97" src="https://3.bp.blogspot.com/-PQ2v7ddtlTc/VPhwq4jZPII/AAAAAAAAGHA/BGQUgE-mZDc/s1600/3DT%2Blogo.png" width="320"/></div>
</div>
<div class="separator" style="clear: both;">
</div>
<div class="separator" style="clear: both;">
</div>
<div class="separator" style="clear: both;">
</div>
<div class="separator" style="clear: both;">
</div>
<div class="separator" style="clear: both;">
</div>
<div class="separator" style="clear: both;">
</div>
<div class="separator" style="clear: both; text-align: left;">
D&T - Defensores de Tóquio (DBE 01) </div>
<div class="separator" style="clear: both; text-align: left;">
AD&T - Advanced Defensores de Tóquio (DBE 03)</div>
<div class="separator" style="clear: both; text-align: left;">
3D&T - A Libertação de Valkaria</div>
<div class="separator" style="clear: both; text-align: left;">
3D&T - Armadura Sombria</div>
<div class="separator" style="clear: both; text-align: left;">
3D&T - Armas e Equipa<span id="goog_1461779299"></span><span id="goog_1461779300"></span>mentos </div>
<div class="separator" style="clear: both; text-align: left;">
3D&T - Baú de Tesouros de Arton</div>
<div class="separator" style="clear: both; text-align: left;">
3D&T - Bestiário Holy Avenger</div>
<div class="separator" style="clear: both; text-align: left;">
3D&T - Darkstalkers (DBE 12) </div>
<div class="separator" style="clear: both; text-align: left;">
3D&T - Escudo do Mestre </div>
<div class="separator" style="clear: both; text-align: left;">
3D&T - Ficha de Magia</div>
<div class="separator" style="clear: both; text-align: left;">
3D&T - Ficha de Personagem</div>
<div class="separator" style="clear: both; text-align: left;">
3D&T - Ficha de Personagem Turbinado</div>
<div class="separator" style="clear: both; text-align: left;">
3D&T - Final Fight (DBE 10) </div>
<div class="separator" style="clear: both; text-align: left;">
3D&T - Gaia 400X</div>
<div class="separator" style="clear: both; text-align: left;">
3D&T - Guia dos Dragões de Arton</div>
<div class="separator" style="clear: both; text-align: left;">
3D&T - Holy Avenger</div>
<div class="separator" style="clear: both; text-align: left;">
3D&T - Interstella </div>
<div class="separator" style="clear: both; text-align: left;">
3D&T - Jaspion</div>
<div class="separator" style="clear: both; text-align: left;">
3D&T - Keras</div>
<div class="separator" style="clear: both; text-align: left;">
3D&T - Livro dos Ninjas</div>
<div class="separator" style="clear: both; text-align: left;">
3D&T - Magibol</div>
<div class="separator" style="clear: both; text-align: left;">
3D&T - Manual - Revisado e Ampliado</div>
<div class="separator" style="clear: both; text-align: left;">
3D&T - Manual - Revisado, Ampliado e Turbinado</div>
<div class="separator" style="clear: both; text-align: left;">
3D&T - Manual - Fastplay </div>
<div class="separator" style="clear: both; text-align: left;">
3D&T - Manual - Fastplay Turbinado (Com Magias)</div>
<div class="separator" style="clear: both; text-align: left;">
3D&T - Manual - Fastplay Turbinado (Sem Magias)</div>
<div class="separator" style="clear: both; text-align: left;">
3D&T - Manual da Fé</div>
<div class="separator" style="clear: both; text-align: left;">
3D&T - Manual da Magia</div>
<div class="separator" style="clear: both; text-align: left;">
3D&T - Manual do Aventureiro Turbinado</div>
<div class="separator" style="clear: both; text-align: left;">
3D&T - Manual dos Monstros</div>
<div class="separator" style="clear: both; text-align: left;">
3D&T - Megaman (DBE 14) </div>
<div class="separator" style="clear: both; text-align: left;">
3D&T - Megaman vs Stardroids</div>
<div class="separator" style="clear: both; text-align: left;">
3D&T - Mortal Kombat 4 (DBE 08)</div>
<div class="separator" style="clear: both; text-align: left;">
3D&T - O Livro de Vérus</div>
<div class="separator" style="clear: both; text-align: left;">
3D&T - O Palácio do Saber</div>
<div class="separator" style="clear: both; text-align: left;">
3D&T - O Reinado - Parte 1 </div>
<div class="separator" style="clear: both; text-align: left;">
3D&T - O Reinado - Parte 2</div>
<div class="separator" style="clear: both; text-align: left;">
3D&T - O Reinado - Parte 3</div>
<div class="separator" style="clear: both; text-align: left;">
3D&T - Panteão</div>
<div class="separator" style="clear: both; text-align: left;">
3D&T - Pokémon</div>
<div class="separator" style="clear: both; text-align: left;">
3D&T - Raças de Arton e U.F.O. Team</div>
<div class="separator" style="clear: both; text-align: left;">
3D&T - Resident Evil</div>
<div class="separator" style="clear: both; text-align: left;">
3D&T - Só Aventuras</div>
<div class="separator" style="clear: both; text-align: left;">
3D&T - Street Fighter Zero 3 (DBE 07)</div>
<div class="separator" style="clear: both; text-align: left;">
3D&T - Street Fighter Zero 3 - Shadaloo (DBE 15) </div>
<div class="separator" style="clear: both; text-align: left;">
3D&T - Supers</div>
<div style="text-align: left;">
3D&T - Tormenta 1ª Edição</div>
<div style="text-align: left;">
3D&T - Tormenta 2ª Edição</div>
<div class="separator" style="clear: both; text-align: left;">
3D&T - U.F.O. Team</div>
<div class="separator" style="clear: both; text-align: left;">
3D&T - Vantagens Alternativas</div>
<div class="separator" style="clear: both; text-align: left;">
3D&T - YuYu Hakusho</div>
<div class="separator" style="clear: both; text-align: center;">
<img border="0" height="35" src="https://2.bp.blogspot.com/-iNiJQYvJ2lg/UiClc76894I/AAAAAAAAAyM/kDk5dKOd0nM/s400/text-divider.png" width="400"/></div>
<div class="separator" style="clear: both; text-align: center;">
<img border="0" height="114" src="https://3.bp.blogspot.com/-09JKM580jZo/VTJyz_aolGI/AAAAAAAAAZM/G1ZlOmjcIQE/s320/Super%2B3D%26T%2B-%2BManual.png" width="320"/></div>
<div class="separator" style="clear: both; text-align: center;">
</div>
<div class="separator" style="clear: both; text-align: left;">
Super 3D&T - Booster - Revisado e Ampliado</div>
<div class="separator" style="clear: both; text-align: left;">
Super 3D&T - Diablo</div>
<div class="separator" style="clear: both; text-align: left;">
Super 3D&T - Manual</div>
<div class="separator" style="clear: both; text-align: left;">
Super 3D&T - Manual - Revisado</div>
<div class="separator" style="clear: both; text-align: left;">
Super 3D&T - Manual - Revisado - Última Versão</div>
<div class="separator" style="clear: both; text-align: left;">
Super 3D&T - Manual de Perícias </div>
<div class="separator" style="clear: both; text-align: left;">
Super 3D&T - Manual do Aventureiro - Fastplay</div>
<div class="separator" style="clear: both; text-align: left;">
Super 3D&T - Manual do Aventureiro - Medieval</div>
<div class="separator" style="clear: both; text-align: left;">
Super 3D&T - Manual do Aventureiro - Moderno </div>
<div class="separator" style="clear: both; text-align: left;">
Super 3D&T - Manual dos Monstros</div>
<div class="separator" style="clear: both; text-align: left;">
Super 3D&T - Regras Adicionais </div>
<div class="separator" style="clear: both; text-align: left;">
Super 3D&T - Spawn</div>
<div class="separator" style="clear: both; text-align: left;">
Super 3D&T - Tormenta</div>
<div class="separator" style="clear: both; text-align: center;">
<img border="0" height="35" src="https://2.bp.blogspot.com/-iNiJQYvJ2lg/UiClc76894I/AAAAAAAAAyM/kDk5dKOd0nM/s400/text-divider.png" width="400"/></div>
<div class="separator" style="clear: both; text-align: center;">
</div>
<div class="separator" style="clear: both; text-align: center;">
<img border="0" height="101" src="https://2.bp.blogspot.com/-2FuNWlkgJmQ/VTJw5gR5fCI/AAAAAAAAAZA/YVutK1K9QsE/s400/3detalpha.png" width="400"/></div>
<div class="separator" style="clear: both; text-align: center;">
</div>
<div class="separator" style="clear: both; text-align: left;">
</div>
<div class="separator" style="clear: both; text-align: left;">
3D&T Alpha - 3D&Tants & Masterminds</div>
<div class="separator" style="clear: both; text-align: left;">
3D&T Alpha - 3D&TZão - Manual (Versão Beta)</div>
<div class="separator" style="clear: both; text-align: left;">
3D&T Alpha - 3D&TZão - Manual (Versão Completa) </div>
<div class="separator" style="clear: both; text-align: left;">
3D&T Alpha - 4D&T Alpha - Hallukardhy Edition</div>
<div class="separator" style="clear: both; text-align: left;">
3D&T Alpha - A Imagem de Tenebra</div>
<div class="separator" style="clear: both; text-align: left;">
3D&T Alpha - A Libertação de Triunphus</div>
<div class="separator" style="clear: both; text-align: left;">
3D&T Alpha - A Queda do Feiticeiro Vermelho</div>
<div class="separator" style="clear: both; text-align: left;">
3D&T Alpha - Alfheim Online</div>
<div class="separator" style="clear: both; text-align: left;">
3D&T Alpha - Bestiário Alpha</div>
<div class="separator" style="clear: both; text-align: left;">
3D&T Alpha - Brigada Ligeira Estelar</div>
<div class="separator" style="clear: both; text-align: left;">
3D&T Alpha - Brigada Ligeira Estelar - A Constelação do Sabre - Vol.01</div>
<div class="separator" style="clear: both; text-align: left;">
3D&T Alpha - Brigada Ligeira Estelar - A Constelação do Sabre - Vol.02</div>
<div class="separator" style="clear: both; text-align: left;">
3D&T Alpha - Brigada Ligeira Estelar - Belonave Supernova - Vol. 01</div>
<div class="separator" style="clear: both; text-align: left;">
3D&T Alpha - Brigada Ligeira Estelar - Belonave Supernova - Vol. 02 </div>
<div class="separator" style="clear: both; text-align: left;">
3D&T Alpha - Brigada Ligeira Estelar - Criando Backgrounds</div>
<div class="separator" style="clear: both; text-align: left;">
3D&T Alpha - Brigada Ligeira Estelar - Ficha de Personagem (v. Junior Lobo)</div>
<div class="separator" style="clear: both; text-align: left;">
3D&T Alpha - Brigada Ligeira Estelar - Históricos</div>
<div class="separator" style="clear: both; text-align: left;">
3D&T Alpha - Brigada Ligeira Estelar - Macross</div>
<div class="separator" style="clear: both; text-align: left;">
3D&T Alpha - Brigada Ligeira Estelar - Naves Espaciais </div>
<div class="separator" style="clear: both; text-align: left;">
3D&T Alpha - Compêndio de Armadilhas</div>
<div class="separator" style="clear: both; text-align: left;">
3D&T Alpha - Compêndio de Regras Alternativas</div>
<div class="separator" style="clear: both; text-align: left;">
3D&T Alpha - Escudo do Mestre</div>
<div class="separator" style="clear: both; text-align: left;">
3D&T Alpha - Ficha de Aventura</div>
<div class="separator" style="clear: both; text-align: left;">
3D&T Alpha - Ficha de Personagem</div>
<div class="separator" style="clear: both; text-align: left;">
3D&T Alpha - Ficha de Personagem (Editável) </div>
<div class="separator" style="clear: both; text-align: left;">
3D&T Alpha - Ficha de Personagem (v. 2)</div>
<div class="separator" style="clear: both; text-align: left;">
3D&T Alpha - Ficha de Personagem (v. 3)</div>
<div class="separator" style="clear: both; text-align: left;">
3D&T Alpha - Ficha de Personagem (v. PC Tattoo Studio)</div>
<div class="separator" style="clear: both; text-align: left;">
3D&T Alpha - Ficha de Personagem - Fantasia Medieval</div>
<div class="separator" style="clear: both; text-align: left;">
3D&T Alpha - Ficha de Personagem - Game of Thrones</div>
<div class="separator" style="clear: both; text-align: left;">
3D&T Alpha - Ficha de Personagem - Shadowrun </div>
<div class="separator" style="clear: both; text-align: left;">
3D&T Alpha - Ficha de Personagem - The Walking Dead </div>
<div class="separator" style="clear: both; text-align: left;">
3D&T Alpha - Guia das Artes Marciais</div>
<div class="separator" style="clear: both; text-align: left;">
3D&T Alpha - Heróis de Guerra</div>
<div class="separator" style="clear: both; text-align: left;">
3D&T Alpha - League of Legends RPG - Versão Beta</div>
<div class="separator" style="clear: both; text-align: left;">
3D&T Alpha - Manual</div>
<div class="separator" style="clear: both; text-align: left;">
3D&T Alpha - Manual - Fastplay 3</div>
<div class="separator" style="clear: both; text-align: left;">
3D&T Alpha - Manual - Revisado</div>
<div class="separator" style="clear: both; text-align: left;">
3D&T Alpha - Manual da Magia</div>
<div class="separator" style="clear: both; text-align: left;">
3D&T Alpha - Manual das Vantagens</div>
<div class="separator" style="clear: both; text-align: left;">
3D&T Alpha - Manual de Kits - Underground </div>
<div class="separator" style="clear: both; text-align: left;">
3D&T Alpha - Manual do Aventureiro Alpha</div>
<div class="separator" style="clear: both; text-align: left;">
3D&T Alpha - Manual do Super Herói</div>
<div class="separator" style="clear: both; text-align: left;">
3D&T Alpha - Manual dos Dragões</div>
<div class="separator" style="clear: both; text-align: left;">
3D&T Alpha - Mega City</div>
<div class="separator" style="clear: both; text-align: left;">
3D&T Alpha - Mega City - Manual do Aventureiro</div>
<div class="separator" style="clear: both; text-align: left;">
3D&T Alpha - Megaman</div>
<div class="separator" style="clear: both; text-align: left;">
3D&T Alpha - Naruto</div>
<div class="separator" style="clear: both; text-align: left;">
3D&T Alpha - Naruto RPG</div>
<div class="separator" style="clear: both; text-align: left;">
3D&T Alpha - Piratas, Navios e Navegações</div>
<div class="separator" style="clear: both; text-align: left;">
3D&T Alpha - Projeto Aliança Negra</div>
<div class="separator" style="clear: both; text-align: left;">
3D&T Alpha - Ragnarok RPG </div>
<div class="separator" style="clear: both; text-align: left;">
3D&T Alpha - Rock Band</div>
<div class="separator" style="clear: both; text-align: left;">
3D&T Alpha - Rock Band - Ficha de Personagem</div>
<div class="separator" style="clear: both; text-align: left;">
3D&T Alpha - Saint Seiya RPG</div>
<div class="separator" style="clear: both; text-align: left;">
3D&T Alpha - Shaman King </div>
<div class="separator" style="clear: both; text-align: left;">
3D&T Alpha - Star Wars - Clone Wars</div>
<div class="separator" style="clear: both; text-align: left;">
3D&T Alpha - Tormenta Alpha</div>
<div class="separator" style="clear: both; text-align: center;">
<img border="0" height="35" src="https://2.bp.blogspot.com/-iNiJQYvJ2lg/UiClc76894I/AAAAAAAAAyM/kDk5dKOd0nM/s400/text-divider.png" width="400"/></div>
<div class="separator" style="clear: both; text-align: center;">
</div>
<div class="separator" style="clear: both; text-align: center;">
</div>
<div class="separator" style="clear: both; text-align: center;">
<img border="0" height="93" src="https://1.bp.blogspot.com/-qqBKQTTpd9g/VemEqoIlEdI/AAAAAAAAB8A/pIpx7CGxp1g/s320/4det%2B-%2Blogo.png" width="320"/> </div>
<div class="separator" style="clear: both; text-align: left;">
4D&T - Manual</div>
<div class="separator" style="clear: both; text-align: left;">
4D&T - Manual - Versão do Diretor</div>
<div class="separator" style="clear: both; text-align: left;">
4D&T - Zillion </div>
<div class="separator" style="clear: both; text-align: center;">
<img border="0" height="35" src="https://2.bp.blogspot.com/-iNiJQYvJ2lg/UiClc76894I/AAAAAAAAAyM/kDk5dKOd0nM/s400/text-divider.png" width="400"/></div>
<div class="separator" style="clear: both; text-align: center;">
</div>
<div class="separator" style="clear: both; text-align: center;">
<img border="0" height="70" src="https://1.bp.blogspot.com/-R0v1Zl8rsuc/VJYLRi2EJ0I/AAAAAAAAFX8/RnrEJpCOwpY/s400/7o_mar_logo.png" width="400"/></div>
<div class="separator" style="clear: both; text-align: left;">
7º Mar - Guia do Jogador</div>
<div class="separator" style="clear: both; text-align: left;">
7º Mar - Guia do Mestre</div>
<div class="separator" style="clear: both; text-align: left;">
7º Mar - Mais Forte que a Espada</div>
<div class="separator" style="clear: both; text-align: center;">
<img border="0" height="35" src="https://2.bp.blogspot.com/-iNiJQYvJ2lg/UiClc76894I/AAAAAAAAAyM/kDk5dKOd0nM/s400/text-divider.png" width="400"/> </div>
<div class="separator" style="clear: both; text-align: center;">
<img border="0" height="80" src="https://3.bp.blogspot.com/-e63994IjZc0/WFu-MP32UaI/AAAAAAAAD3I/Tf91QSohpsEZLn3XSkidJS3Cy9a-Q_M2gCLcB/s320/lendadoscincoaneis%2B-%2Blogo.png" width="320"/></div>
<div class="separator" style="clear: both; text-align: left;">
A Lenda dos Cinco Anéis 1E - Guia Acadêmico</div>
<div class="separator" style="clear: both; text-align: left;">
A Lenda dos Cinco Anéis 3E - Guia Acadêmico de Rokugan </div>
<div class="separator" style="clear: both; text-align: left;">
A Lenda dos Cinco Anéis 3E - Livro Básico</div>
<div class="separator" style="clear: both; text-align: left;">
A Lenda dos Cinco Anéis 3E - Noite dos Mil Gritos</div>
<div class="separator" style="clear: both; text-align: left;">
A Lenda dos Cinco Anéis 3E - O Caminho da Fênix </div>
<div class="separator" style="clear: both; text-align: left;">
A Lenda dos Cinco Anéis 3E - O Caminho do Escorpião </div>
<div class="separator" style="clear: both; text-align: left;">
A Lenda dos Cinco Anéis 4E - Livro Básico</div>
<div class="separator" style="clear: both; text-align: center;">
<img border="0" height="35" src="https://2.bp.blogspot.com/-iNiJQYvJ2lg/UiClc76894I/AAAAAAAAAyM/kDk5dKOd0nM/s400/text-divider.png" width="400"/></div>
<div class="separator" style="clear: both; text-align: center;">
<img border="0" height="68" src="https://3.bp.blogspot.com/-rycKrokdxuI/VTWSy0ImWaI/AAAAAAAAAeA/01eNFArSF8E/s320/Abismo%2BLogo.png" width="320"/></div>
<div class="separator" style="clear: both; text-align: center;">
</div>
<div class="separator" style="clear: both; text-align: left;">
</div>
<div class="separator" style="clear: both; text-align: left;">
Abismo Infinito - A Caixa Dourada</div>
<div class="separator" style="clear: both; text-align: left;">
Abismo Infinito - Livro de Regras</div>
<div class="separator" style="clear: both; text-align: left;">
Abismo Infinito - No Limiar da Realidade</div>
<div class="separator" style="clear: both; text-align: center;">
<img border="0" height="35" src="https://2.bp.blogspot.com/-iNiJQYvJ2lg/UiClc76894I/AAAAAAAAAyM/kDk5dKOd0nM/s400/text-divider.png" width="400"/></div>
<div class="separator" style="clear: both; text-align: center;">
<img border="0" height="120" src="https://4.bp.blogspot.com/-1JRDMVYc3XE/VTZPdy7j8cI/AAAAAAAAAec/tt2yeF3OahU/s400/a%C3%A7%C3%A3o-logo.png" width="400"/></div>
<div class="separator" style="clear: both; text-align: center;">
</div>
<div style="text-align: left;">
Ação!!! - Ficha de Personagem<br/>
Ação!!! - Ficha de Personagem (Completável) </div>
<div style="text-align: left;">
Ação!!! - Ficha de Personagem (Sem Bordas)</div>
<div style="text-align: left;">
Ação!!! - Módulo Básico<br/>
<div style="text-align: center;">
<img border="0" height="35" src="https://2.bp.blogspot.com/-iNiJQYvJ2lg/UiClc76894I/AAAAAAAAAyM/kDk5dKOd0nM/s400/text-divider.png" width="400"/></div>
<div class="separator" style="clear: both; text-align: center;">
<img border="0" height="65" src="https://3.bp.blogspot.com/-odKI8Zf7cg0/WGzIQtSVO7I/AAAAAAAAD54/_dgiUSuxvyo8VSoaL7XPgXOMF7HeEg5jwCLcB/s200/alchemia%2B-%2Blogo.png" width="200"/></div>
<div style="text-align: left;">
Alchemia RPG - Guia Completo de Raças<br/>
Alchemia RPG - Guia do Cenário e Ambientação<br/>
Alchemia RPG - Guia do Mestre<br/>
Alchemia RPG - Livro Básico<br/>
Alchemia RPG - Livro dos Monstros<br/>
Alchemia RPG - Manual de Classes<br/>
Alchemia RPG - Os Cavaleiros do Zodíaco </div>
</div>
<div>
<img border="0" height="35" src="https://2.bp.blogspot.com/-iNiJQYvJ2lg/UiClc76894I/AAAAAAAAAyM/kDk5dKOd0nM/s400/text-divider.png" width="400"/></div>
<div class="separator" style="clear: both; text-align: center;">
</div>
<div class="separator" style="clear: both; text-align: center;">
<img border="0" height="100" src="https://1.bp.blogspot.com/-lVYGNe-248I/VCyaPcNqD-I/AAAAAAAAEQs/9MIZk5im0BQ/s1600/angusrpgpng.png" width="200"/></div>
<div class="separator" style="clear: both; text-align: left;">
Angus RPG - Escudo do Mestre</div>
<div class="separator" style="clear: both; text-align: left;">
Angus RPG - Livro Básico</div>
<div class="separator" style="clear: both; text-align: left;">
Angus RPG - Mapa</div>
<img border="0" height="35" src="https://2.bp.blogspot.com/-iNiJQYvJ2lg/UiClc76894I/AAAAAAAAAyM/kDk5dKOd0nM/s400/text-divider.png" width="400"/><br/>
<div class="separator" style="clear: both; text-align: left;">
</div>
<div class="separator" style="clear: both; text-align: center;">
<img border="0" height="100" src="https://4.bp.blogspot.com/-hdISXtlBmKs/VmGxLCcm84I/AAAAAAAACw8/8mjk0D84EY0/s200/aventura%2Be%2Bmagia%2B-%2Blogo.png" width="200"/></div>
<div class="separator" style="clear: both; text-align: left;">
Aventura e Magia </div>
<div class="separator" style="clear: both; text-align: left;">
</div>
<div style="text-align: left;">
<div style="text-align: center;">
<img border="0" height="35" src="https://2.bp.blogspot.com/-iNiJQYvJ2lg/UiClc76894I/AAAAAAAAAyM/kDk5dKOd0nM/s400/text-divider.png" width="400"/></div>
<div class="separator" style="clear: both; text-align: center;">
<img border="0" height="79" src="https://4.bp.blogspot.com/-AdA9DVQCfgg/VhWU4I7gY0I/AAAAAAAACJM/LYisuDrDoko/s200/berelgard%2B-%2Blogo.png" width="200"/></div>
Belregard - Cenário de Campanha<br/>
Belregard - Cinzas de Um Mundo Derrotado<br/>
<div style="text-align: center;">
<img border="0" height="35" src="https://2.bp.blogspot.com/-iNiJQYvJ2lg/UiClc76894I/AAAAAAAAAyM/kDk5dKOd0nM/s400/text-divider.png" width="400"/> </div>
<div style="text-align: center;">
<img border="0" src="https://1.bp.blogspot.com/-OGqpmrruJkE/VmVnCj_fOnI/AAAAAAAACzA/5DQVD-izJIo/s200/besm%2Bd20%2B-%2Blogo.png"/></div>
Besm D20 - Livro do Jogador de Anime<br/>
Besm D20 - Planilha de Personagem<br/>
<div style="text-align: center;">
</div>
<div style="text-align: center;">
<img border="0" height="35" src="https://2.bp.blogspot.com/-iNiJQYvJ2lg/UiClc76894I/AAAAAAAAAyM/kDk5dKOd0nM/s400/text-divider.png" width="400"/></div>
<div class="separator" style="clear: both; text-align: center;">
<img border="0" height="73" src="https://2.bp.blogspot.com/-W_4rt7tt7xs/VgH982zheDI/AAAAAAAACB4/B03hLSebYak/s320/birthright%2B-%2Blogo.png" width="320"/></div>
<div style="text-align: left;">
Birthright - Atlas de Cerilia<br/>
<div style="text-align: center;">
<img border="0" height="35" src="https://2.bp.blogspot.com/-iNiJQYvJ2lg/UiClc76894I/AAAAAAAAAyM/kDk5dKOd0nM/s400/text-divider.png" width="400"/> </div>
<div class="separator" style="clear: both; text-align: center;">
<img border="0" height="112" src="https://4.bp.blogspot.com/-9O009pl2L0c/WG4XgoInwfI/AAAAAAAAD6w/_nlWkuhj-pUbxiMmNhVQWWcEqTj4YoiOgCLcB/s320/blood%2Band%2Bhonor%2B-%2Blogo.png" width="320"/></div>
<div style="text-align: left;">
Blood & Honor - 1850 - Período Tokugawa<br/>
Blood & Honor - Clã Takeshin<br/>
Blood & Honor - Ficha de Ações de Estação<br/>
Blood & Honor - Ficha de Clã<br/>
Blood & Honor - Ficha de Clãs Individuais <br/>
Blood & Honor - Ficha de Personagem<br/>
Blood & Honor - Um Jogo de Tragédia Samurai</div>
</div>
<div style="text-align: center;">
<img border="0" height="35" src="https://2.bp.blogspot.com/-iNiJQYvJ2lg/UiClc76894I/AAAAAAAAAyM/kDk5dKOd0nM/s400/text-divider.png" width="400"/></div>
<div style="text-align: center;">
<img border="0" src="https://1.bp.blogspot.com/-6_xCrtsQk7M/VVP95FXXn6I/AAAAAAAAAm4/2W7EV5D8A2o/s200/BF-logo.png"/></div>
Busca Final - Fronteira Final<br/>
Busca Final - Livro Básico<br/>
<div style="text-align: center;">
<img border="0" height="35" src="https://2.bp.blogspot.com/-iNiJQYvJ2lg/UiClc76894I/AAAAAAAAAyM/kDk5dKOd0nM/s400/text-divider.png" width="400"/></div>
<div class="separator" style="clear: both; text-align: center;">
</div>
<div class="separator" style="clear: both; text-align: center;">
<img border="0" height="55" src="https://1.bp.blogspot.com/-MXeHCIeG2mA/VemFl9lZOeI/AAAAAAAAB8Q/qzAH1_VCyK8/s200/chainmail%2B-%2Blogo.png" width="200"/></div>
Chainmail - 3ª Edição<br/>
<div style="text-align: center;">
<img border="0" height="35" src="https://2.bp.blogspot.com/-iNiJQYvJ2lg/UiClc76894I/AAAAAAAAAyM/kDk5dKOd0nM/s400/text-divider.png" width="400"/> </div>
<div class="separator" style="clear: both; text-align: center;">
<img border="0" height="62" src="https://2.bp.blogspot.com/-7lf_-n-hb7s/WHSz0ZFznfI/AAAAAAAAD8E/e2aoZHsl60ks5xbll895Kr1DtHQHYv66gCLcB/s200/chamado-de-cthulhu-logo-quadrado.png" width="200"/></div>
Chamado de Cthulhu - A Arte do Chamado de Cthulhu<br/>
Chamado de Cthulhu - A Semente da Destruição<br/>
Chamado de Cthulhu - Cartões de Armas<br/>
Chamado de Cthulhu - De Profundis - Cartas do Abismo<br/>
Chamado de Cthulhu - Degraus para o Abismo<br/>
Chamado de Cthulhu - Documentos Sinistros<br/>
Chamado de Cthulhu - Fast Play<br/>
Chamado de Cthulhu - Ficha de Personagem<br/>
Chamado de Cthulhu - Livro Básico<br/>
Chamado de Cthulhu - O Monstro de Macapá<br/>
Chamado de Cthulhu - Portões e Guardiões<br/>
Chamado de Cthulhu - Rigor Mortis<br/>
Chamado de Cthulhu - Tribal Dance<br/>
<div style="text-align: center;">
<img border="0" height="35" src="https://2.bp.blogspot.com/-iNiJQYvJ2lg/UiClc76894I/AAAAAAAAAyM/kDk5dKOd0nM/s400/text-divider.png" width="400"/></div>
<div class="separator" style="clear: both; text-align: center;">
</div>
<div class="separator" style="clear: both; text-align: center;">
<img border="0" height="88" src="https://3.bp.blogspot.com/-g1SC9RCv8As/VmlB-RHY4YI/AAAAAAAAC4I/e6HSvxNFdew/s200/cronicas%2Bda%2Bsetima%2Blua%2B-%2Blogo.png" width="200"/></div>
<div style="text-align: center;">
</div>
Crônicas da Sétima Lua - Cenário de Campanha<br/>
Crônicas da Sétima Lua - O Mapa Aldariano<br/>
<div style="text-align: center;">
<img border="0" height="35" src="https://2.bp.blogspot.com/-iNiJQYvJ2lg/UiClc76894I/AAAAAAAAAyM/kDk5dKOd0nM/s400/text-divider.png" width="400"/> </div>
<div style="text-align: center;">
<img border="0" src="https://4.bp.blogspot.com/-rGcqO1bTpgs/VmlCI0nxFRI/AAAAAAAAC4Q/Y_KBQH6GKr8/s200/cronicas%2Bde%2Bavalon%2B-%2Blogo.png"/></div>
Crônicas de Avalon - Ficha de Personagem <br/>
Crônicas de Avalon - Lendas e Heróis<br/>
Crônicas de Avalon - Magia Britânica<br/>
Crônicas de Avalon - Mapa<br/>
Crônicas de Avalon - O Começo<br/>
Crônicas de Avalon - Primeiros Passos<br/>
Crônicas de Avalon - Trilhas Heróicas e de Vilania<br/>
Crônicas de Avalon - Velha Britânia<br/>
<div style="text-align: center;">
<img border="0" height="35" src="https://2.bp.blogspot.com/-iNiJQYvJ2lg/UiClc76894I/AAAAAAAAAyM/kDk5dKOd0nM/s400/text-divider.png" width="400"/> </div>
<div class="separator" style="clear: both; text-align: center;">
<img border="0" height="63" src="https://2.bp.blogspot.com/-Kwumr27UUDY/Vxo2ggTud_I/AAAAAAAADWE/v7VZEzhb-BUcDIYlsRZ3lDrvOZ62KuZbQCLcB/s200/cronicas.png" width="200"/></div>
Crônicas RPG - Elenco de Apoio<br/>
Crônicas RPG - Elenco de Apoio (Compactado)<br/>
Crônicas RPG - Ficha de Crônica (Completável)<br/>
Crônicas RPG - Ficha de Personagem (Completável)<br/>
Crônicas RPG - Ficha de Regência (Completável)<br/>
Crônicas RPG - Ficha de Resolução de Combate<br/>
Crônicas RPG - Guia Introdutório<br/>
Crônicas RPG - Guias e Fichas<br/>
Crônicas RPG - Livro de Regras<br/>
Crônicas RPG - O Estandarte do Corvo<br/>
<div style="text-align: center;">
<img border="0" height="35" src="https://2.bp.blogspot.com/-iNiJQYvJ2lg/UiClc76894I/AAAAAAAAAyM/kDk5dKOd0nM/s400/text-divider.png" width="400"/> </div>
<div style="text-align: center;">
<img border="0" src="https://1.bp.blogspot.com/-fPWYoJyT0xE/VmlNvV8c93I/AAAAAAAAC5U/9pafz2loa2E/s320/d20%2Bmodern%2B-%2Blogo.png"/></div>
D20 Modern - Livro de Regras Básicas</div>
<div>
<img border="0" height="35" src="https://2.bp.blogspot.com/-iNiJQYvJ2lg/UiClc76894I/AAAAAAAAAyM/kDk5dKOd0nM/s400/text-divider.png" width="400"/></div>
<img border="0" height="105" src="https://2.bp.blogspot.com/-UxXOzlwFKLU/U2RTkW4r9oI/AAAAAAAADXU/c2qUNyC9N2o/s200/daemon.png" width="200"/><br/>
<div style="text-align: left;">
Daemon - Abismo<br/>
Daemon - Alastores - A Justiça Infernal<br/>
Daemon - Anime RPG<br/>
Daemon - Anime RPG - Japan Heroes</div>
<div style="text-align: left;">
Daemon - Anime RPG - Powers<br/>
Daemon - Anime RPG - Supers</div>
<div style="text-align: left;">
Daemon - Anime RPG - Supers - Monstros e Vilões</div>
<div style="text-align: left;">
Daemon - Anime RPG - Supers - Powers</div>
<div style="text-align: left;">
Daemon - Anjos - A Cidade de Prata<br/>
Daemon - Anjos Caídos (DBE 16) </div>
<div style="text-align: left;">
Daemon - Arkanun<br/>
Daemon - Ark-a-nun - Arquivos de Bel-Kalaa</div>
<div style="text-align: left;">
Daemon - As aventuras de Jackie Chan</div>
<div style="text-align: left;">
Daemon - Cães de Guerra<br/>
Daemon - Caçadores Alados<br/>
Daemon - Celta </div>
<div style="text-align: left;">
Daemon - Clube de Caça<br/>
Daemon - Clube de Caça - Guia do Jogador<br/>
Daemon - Corações Negros<br/>
Daemon - Cthulhu<br/>
Daemon - Cyberpunk<br/>
Daemon - Daiphir - Legado de Sangue </div>
<div style="text-align: left;">
Daemon - Demônios - A Divina Comédia<br/>
Daemon - Domini Urbs<br/>
Daemon - Dragões Reis Caídos</div>
<div style="text-align: left;">
Daemon - Ficha de Personagem (v. Alternativa)<br/>
Daemon - Ficha de Personagem Universal (v. Thiago Flores Barbosa)<br/>
Daemon - Ficha Modular</div>
<div style="text-align: left;">
Daemon - Gerador de Itens Mágicos</div>
<div style="text-align: left;">
Daemon - Grimório</div>
<div style="text-align: left;">
Daemon - Guia de Armas</div>
<div style="text-align: left;">
Daemon - Guia de Armas Medievais</div>
<div style="text-align: left;">
Daemon - Guia de Itens Mágicos<br/>
Daemon - Guia dos Dragões<br/>
Daemon - Guia dos Dragões 2<br/>
Daemon - Imortal<br/>
Daemon - Imortal - A Centelha</div>
<div style="text-align: left;">
Daemon - Inimigo natural</div>
<div style="text-align: left;">
Daemon - Inquisição</div>
<div style="text-align: left;">
Daemon - Invasão<br/>
Daemon - Invasão Sci-Fi <br/>
Daemon - Jyhad - Faces da Fé</div>
<div style="text-align: left;">
Daemon - Jyhad - Guerra Santa</div>
<div style="text-align: left;">
Daemon - Lobisomem - A Maldição<br/>
Daemon - Lobisomem - A Maldição - 2ª Edição <br/>
Daemon - Mago</div>
<div style="text-align: left;">
Daemon - Manual de Conversão</div>
<div style="text-align: left;">
Daemon - Medieval<br/>
Daemon - Metrópolis<br/>
Daemon - Mítica </div>
<div style="text-align: left;">
Daemon - Módulo Básico - Expandido e Modificado<br/>
Daemon - Mortos Vivos<br/>
Daemon - Neokosmos<br/>
Daemon - Neokosmos - Astarte - Livro da Polis<br/>
Daemon - Neokosmos - Errata</div>
<div style="text-align: left;">
Daemon - O Corvo</div>
<div style="text-align: left;">
Daemon - O sinistro som do silêncio<br/>
Daemon - One Punch Man RPG<br/>
Daemon - Orishas - O Despertar da Nzambi<br/>
Daemon - Santa Cruz<br/>
Daemon - Santa Cruz - Escudo do Mestre<br/>
Daemon - Santa Cruz - Guia de Aventuras<br/>
Daemon - Santa Cruz - Inferno Verde<br/>
Daemon - Santa Cruz - Segredos do Diabo<br/>
Daemon - Sistema Daemon 2.X</div>
<div style="text-align: left;">
Daemon - Sistema Daemon 3.0</div>
<div style="text-align: left;">
Daemon - Sobrenatural</div>
<div style="text-align: left;">
Daemon - Spiritum - O Reino dos Mortos<br/>
Daemon - Tagmar </div>
<div style="text-align: left;">
Daemon - Templários<br/>
Daemon - Tradições Mágicas - Vodu </div>
<div style="text-align: left;">
Daemon - Trevas<br/>
Daemon - Trevas - Campanha Épica <br/>
Daemon - Trevas - Ficha de Personagem (Editável)<br/>
Daemon - Trevas - RPG de Horror Moderno (DBE 06)<br/>
Daemon - Trevas do Oriente - Cronologia<br/>
Daemon - Trevas do Oriente - Onmyodo <br/>
Daemon - Trevas do Oriente - Os 28 Palácios Lunares<br/>
Daemon - Trevas do Oriente - Youkai e Kyuukai<br/>
Daemon - Um Sussurro nas Trevas </div>
<div style="text-align: left;">
Daemon - Vampiros Mitológicos<br/>
Daemon - Varna - Chamado da Guerra </div>
<div style="text-align: left;">
Daemon - Vikings</div>
<img border="0" src="https://2.bp.blogspot.com/-iNiJQYvJ2lg/UiClc76894I/AAAAAAAAAyM/kDk5dKOd0nM/s400/text-divider.png"/><br/>
<img border="0" height="79" src="https://1.bp.blogspot.com/-xlh9byowEfY/VTRNI0f_HLI/AAAAAAAAAcU/UjZsiQUbx3Q/s200/Dark_sun_logo.png" width="200"/><br/>
</div>
<div style="text-align: left;">
<div style="text-align: left;">
Dark Sun AD&D - O Mestre das Ilusões (Aventura)</div>
<div class="separator" style="clear: both; text-align: left;">
Dark Sun 3.5 - A História da Magia</div>
<div class="separator" style="clear: both; text-align: left;">
Dark Sun 3.5 - A Região de Tyr - Mapa</div>
<div class="separator" style="clear: both; text-align: left;">
Dark Sun 3.5 - A Região dos Penhascos Serrados - Mapa</div>
<div class="separator" style="clear: both; text-align: left;">
Dark Sun 3.5 - Apêndice de Classes de Prestígio I </div>
<div class="separator" style="clear: both; text-align: left;">
Dark Sun 3.5 - Apêndice de Classes de Prestígio II</div>
<div class="separator" style="clear: both; text-align: left;">
Dark Sun 3.5 - Avangion</div>
<div class="separator" style="clear: both; text-align: left;">
Dark Sun 3.5 - Campeão de Rajaat</div>
<div class="separator" style="clear: both; text-align: left;">
Dark Sun 3.5 - Cidade-Estado de Draj </div>
<div class="separator" style="clear: both; text-align: left;">
Dark Sun 3.5 - Cidade-Estado de Draj - Mapa</div>
<div class="separator" style="clear: both; text-align: left;">
Dark Sun 3.5 - Cidadela das Duas Luas - Mapa </div>
<div class="separator" style="clear: both; text-align: left;">
Dark Sun 3.5 - Conspiração em Tyr </div>
<div class="separator" style="clear: both; text-align: left;">
Dark Sun 3.5 - Cromlin - Mapa</div>
<div class="separator" style="clear: both; text-align: left;">
Dark Sun 3.5 - Crônicas do Andarilho</div>
<div class="separator" style="clear: both; text-align: left;">
Dark Sun 3.5 - Dragões Athasianos</div>
<div class="separator" style="clear: both; text-align: left;">
Dark Sun 3.5 - Dregoth Ascending - Parte 1 - O Dia da Luz</div>
<div class="separator" style="clear: both; text-align: left;">
Dark Sun 3.5 - Dregoth Ascending - Parte 2 - A Missão</div>
<div class="separator" style="clear: both; text-align: left;">
Dark Sun 3.5 - Dregoth Ascending - Parte 3 - A Ascensão</div>
<div class="separator" style="clear: both; text-align: left;">
Dark Sun 3.5 - Estrada para Urik</div>
<div class="separator" style="clear: both; text-align: left;">
Dark Sun 3.5 - Kled - Mapa</div>
<div class="separator" style="clear: both; text-align: left;">
Dark Sun 3.5 - Liberdade</div>
<div class="separator" style="clear: both; text-align: left;">
Dark Sun 3.5 - Linha do Tempo de Athas</div>
<div class="separator" style="clear: both; text-align: left;">
Dark Sun 3.5 - Livro Básico</div>
<div class="separator" style="clear: both; text-align: left;">
Dark Sun 3.5 - Livro de Regras do Jogador</div>
<div class="separator" style="clear: both; text-align: left;">
Dark Sun 3.5 - Livro de Reis de Kemalok - Notas do Errante</div>
<div class="separator" style="clear: both; text-align: left;">
Dark Sun 3.5 - Mistérios dos Antigos</div>
<div class="separator" style="clear: both; text-align: left;">
Dark Sun 3.5 - Módulo Básico</div>
<div class="separator" style="clear: both; text-align: left;">
Dark Sun 3.5 - Módulo Expandido</div>
<div class="separator" style="clear: both; text-align: left;">
Dark Sun 3.5 - O Lodaçal Draji - Mapa</div>
<div class="separator" style="clear: both; text-align: left;">
Dark Sun 3.5 - O Olho da Mente</div>
<div class="separator" style="clear: both; text-align: left;">
Dark Sun 3.5 - Personagens Oficiais </div>
<div class="separator" style="clear: both; text-align: left;">
Dark Sun 3.5 - Sabedoria dos Sertanejos</div>
<div class="separator" style="clear: both; text-align: left;">
Dark Sun 3.5 - Sussurros da Tempestade</div>
<div class="separator" style="clear: both; text-align: left;">
Dark Sun 3.5 - Terrores das Terras Mortas</div>
<div class="separator" style="clear: both; text-align: left;">
Dark Sun 3.5 - Terrores de Athas - Livro dos Monstros</div>
<div class="separator" style="clear: both; text-align: left;">
Dark Sun 3.5 - Um Pouco de Conhecimento</div>
<div class="separator" style="clear: both; text-align: center;">
<img border="0" height="35" src="https://2.bp.blogspot.com/-iNiJQYvJ2lg/UiClc76894I/AAAAAAAAAyM/kDk5dKOd0nM/s400/text-divider.png" width="400"/></div>
<div class="separator" style="clear: both; text-align: center;">
<img border="0" height="47" src="https://2.bp.blogspot.com/-pB5E6tS_3lU/VenCBiNj43I/AAAAAAAAB8g/Po1YGIbvmys/s200/desbravadores%2B-%2Blogo.png" width="200"/></div>
<div style="text-align: left;">
Desbravadores - Dragonianos<br/>
Desbravadores - Guia de Equipamentos <br/>
Desbravadores - Livro de Regras<br/>
Desbravadores - Livro dos Reinos de Belthor </div>
<div style="text-align: left;">
Desbravadores - Livro dos Reinos dos Magos<br/>
Desbravadores - Magias de Era<br/>
Desbravadores - O Estalandeiro </div>
<div class="separator" style="clear: both; text-align: center;">
<img border="0" height="35" src="https://2.bp.blogspot.com/-iNiJQYvJ2lg/UiClc76894I/AAAAAAAAAyM/kDk5dKOd0nM/s400/text-divider.png" width="400"/></div>
<div class="separator" style="clear: both; text-align: center;">
<img border="0" height="46" src="https://3.bp.blogspot.com/-vWTC1B9x4sk/VIDik-FnMiI/AAAAAAAAE-0/Ihvvi8WyNeI/s1600/dragon-age.png" width="200"/></div>
<div class="separator" style="clear: both; text-align: center;">
</div>
<div class="separator" style="clear: both; text-align: left;">
Dragon Age RPG - Caçada aos Bandoleiros</div>
<div class="separator" style="clear: both; text-align: left;">
Dragon Age RPG - Consulta De Jogadores</div>
<div class="separator" style="clear: both; text-align: left;">
Dragon Age RPG - Criação de Personagem </div>
<div class="separator" style="clear: both; text-align: left;">
Dragon Age RPG - Escudo De Mestre (v. Davi Lyra)</div>
<div class="separator" style="clear: both; text-align: left;">
Dragon Age RPG - Ficha De Personagem </div>
<div class="separator" style="clear: both; text-align: left;">
Dragon Age RPG - Ficha Rápida</div>
<div class="separator" style="clear: both; text-align: left;">
Dragon Age RPG - Grimório dos Magos </div>
<div class="separator" style="clear: both; text-align: left;">
Dragon Age RPG - Guia do Jogador</div>
<div class="separator" style="clear: both; text-align: left;">
Dragon Age RPG - Guia do Mestre</div>
<div class="separator" style="clear: both; text-align: left;">
Dragon Age RPG - Guia dos Adversários</div>
<div class="separator" style="clear: both; text-align: left;">
Dragon Age RPG - Resumo de Classes </div>
<div class="separator" style="clear: both; text-align: left;">
Dragon Age RPG - Resumo de Monstros</div>
<div class="separator" style="clear: both; text-align: left;">
Dragon Age RPG - Resumo de Talentos </div>
<div class="separator" style="clear: both; text-align: left;">
Dragon Age RPG - Sobre o Luar do Lobisomem</div>
<div class="separator" style="clear: both; text-align: left;">
Dragon Age RPG - Uma Noite Alucinante</div>
<div class="separator" style="clear: both; text-align: center;">
<img border="0" height="35" src="https://2.bp.blogspot.com/-iNiJQYvJ2lg/UiClc76894I/AAAAAAAAAyM/kDk5dKOd0nM/s400/text-divider.png" width="400"/></div>
<div class="separator" style="clear: both; text-align: center;">
<img border="0" height="107" src="https://1.bp.blogspot.com/-J4Ij-GuFBxQ/WKQkI12Qo2I/AAAAAAAAECY/g1aL45XDOCUXPNKbGgQV6esCZJtND4X5QCLcB/s200/dragon%2Bfantasy%2Bsaga%2B-%2Blogo.png" width="200"/></div>
<div class="separator" style="clear: both; text-align: left;">
Dragon Fantasy Saga - Escudo do Mestre (v5.0) </div>
<div class="separator" style="clear: both; text-align: left;">
Dragon Fantasy Saga - Ficha de Personagem (v5.0)</div>
<div class="separator" style="clear: both; text-align: left;">
Dragon Fantasy Saga - Manual Básico (v2.5)</div>
<div class="separator" style="clear: both; text-align: left;">
Dragon Fantasy Saga - Manual Básico (v5.0)</div>
<div class="separator" style="clear: both; text-align: left;">
Dragon Fantasy Saga - Manual Básico - Compactado (v5.0) </div>
<div class="separator" style="clear: both; text-align: center;">
<img border="0" height="35" src="https://2.bp.blogspot.com/-iNiJQYvJ2lg/UiClc76894I/AAAAAAAAAyM/kDk5dKOd0nM/s400/text-divider.png" width="400"/></div>
<div class="separator" style="clear: both; text-align: center;">
<img border="0" height="52" src="https://2.bp.blogspot.com/-ri338cgeSZc/VgKVc7_zw7I/AAAAAAAACCQ/t3t56nEX_Xk/s320/dragonquest%2B-%2Blogo.png" width="320"/></div>
<div class="separator" style="clear: both; text-align: left;">
D&D - Dragon Quest - Cards</div>
<div class="separator" style="clear: both; text-align: left;">
D&D - Dragon Quest - Escudo do Mestre</div>
<div class="separator" style="clear: both; text-align: left;">
D&D - Dragon Quest - Ficha de Personagem </div>
<div class="separator" style="clear: both; text-align: left;">
D&D - Dragon Quest - Livro de Aventuras</div>
<div class="separator" style="clear: both; text-align: left;">
D&D - Dragon Quest - Livro de Regras</div>
<div class="separator" style="clear: both; text-align: left;">
D&D - Dragon Quest - Mapa </div>
<div class="separator" style="clear: both; text-align: left;">
D&D - Dragon Quest - Tabuleiro </div>
<div class="separator" style="clear: both; text-align: center;">
<img border="0" height="35" src="https://2.bp.blogspot.com/-iNiJQYvJ2lg/UiClc76894I/AAAAAAAAAyM/kDk5dKOd0nM/s400/text-divider.png" width="400"/></div>
<div class="separator" style="clear: both; text-align: center;">
<img border="0" height="70" src="https://1.bp.blogspot.com/-cDcMYAH9t9Q/VTZQVfehskI/AAAAAAAAAes/B9jP64Mx304/s1600/dragonlance.gif" width="200"/></div>
<div class="separator" style="clear: both; text-align: center;">
</div>
Dragonlance - A Arte de Dragonlance<br/>
Dragonlance D20 - Cenário de Campanha <br/>
<div style="text-align: center;">
<img border="0" src="https://2.bp.blogspot.com/-iNiJQYvJ2lg/UiClc76894I/AAAAAAAAAyM/kDk5dKOd0nM/s400/text-divider.png"/></div>
<div style="text-align: center;">
<img border="0" height="75" src="https://4.bp.blogspot.com/-MetpcttH_pU/VAFLzX2hv2I/AAAAAAAAD_Y/goF7FDxRG-o/s200/D%26D.png" width="200"/></div>
D&D - Dungeon de Zanzer<br/>
<div class="separator" style="clear: both; text-align: left;">
D&D - Ficha de Personagem</div>
<div class="separator" style="clear: both; text-align: left;">
D&D - Ficha de Personagem Grow</div>
<div class="separator" style="clear: both; text-align: left;">
D&D - Ficha de Personagem Hand Made</div>
<div class="separator" style="clear: both; text-align: left;">
D&D - Kids & Dragons - Edição Heróica</div>
<div class="separator" style="clear: both; text-align: left;">
D&D - Livro de Aventuras</div>
<div class="separator" style="clear: both; text-align: left;">
D&D - Livro de Regras</div>
<div class="separator" style="clear: both; text-align: left;">
D&D - Módulo Vorpal G1 - Guia Para um D&D Mais Old-School </div>
<div>
<div style="text-align: left;">
<div style="text-align: center;">
<img border="0" height="35" src="https://2.bp.blogspot.com/-iNiJQYvJ2lg/UiClc76894I/AAAAAAAAAyM/kDk5dKOd0nM/s400/text-divider.png" width="400"/></div>
<div class="separator" style="clear: both; text-align: center;">
<img border="0" height="112" src="https://2.bp.blogspot.com/-YKtJ_JJHcd8/U3eXT0KlH1I/AAAAAAAADbc/GdOw9Oxk-WA/s320/adnd_logo.gif" width="320"/></div>
<div style="text-align: left;">
AD&D - Livro do Guerreiro<br/>
AD&D - Livro do Jogador <br/>
AD&D 2E - A Terrível Tragédia de Tragidore (Aventura)<br/>
AD&D 2E - Divisória do Mestre<br/>
AD&D 2E - Encarte - Abril Jovem<br/>
AD&D 2E - Fadas do Gelo (Aventura)<br/>
AD&D 2E - Livro do Jogador <br/>
AD&D 2E - Livro do Jogador (v. Digital)<br/>
AD&D 2E - Livro do Mestre <br/>
AD&D 2E - Livro dos Monstros <br/>
AD&D 2E - Livro dos Monstros (v. Digital)<br/>
AD&D 2E - Os Mundos da Magia 1<br/>
AD&D 2E - Os Mundos da Magia 2<br/>
AD&D 2E - Os Mundos da Magia 3<br/>
AD&D 2E - Os Mundos da Magia 4<br/>
AD&D 2E - Os Mundos da Magia - Especial Aventura<br/>
AD&D 2E - Planilha do Jogador (v. HSX) <br/>
AD&D 2E - Planilha do Jogador (v. Marinheiro) <br/>
AD&D 2E - Planilha do Jogador (v. Os Últimos Dias de Glória)<br/>
AD&D 2E - Planilha do Jogador (v. PC Tattoo Studio)<br/>
AD&D 2E - Planilha do Jogador - Tomo de Magias <br/>
AD&D 2E - Planilha do Mestre<br/>
AD&D 2E - Sombras do Terror<br/>
AD&D 2E - Tome of Magic - Magias Arcanas<br/>
<div style="text-align: center;">
<img border="0" height="35" src="https://2.bp.blogspot.com/-iNiJQYvJ2lg/UiClc76894I/AAAAAAAAAyM/kDk5dKOd0nM/s400/text-divider.png" width="400"/> </div>
<div style="text-align: center;">
<img border="0" src="https://4.bp.blogspot.com/-WQq9Y_YNX7Y/Uh9yxkt-1-I/AAAAAAAAAvM/3RI477MdTWQ/s200/dungeons_and_dragons2.png"/></div>
</div>
</div>
</div>
<div style="text-align: left;">
</div>
D&D 3E - Aventuras Orientais<br/>
D&D 3E - Aventuras Orientais - Mahasarpa<br/>
D&D 3E - Backdrops - Panos de Fundo<br/>
D&D 3E - Classes de Prestígio - Volume 01<br/>
D&D 3E - Classes de Prestígio - Volume 02<br/>
D&D 3E - Classes de Prestígio 3.5<br/>
D&D 3E - Códice de Talentos<br/>
D&D 3E - Compêndio de Monstros<br/>
D&D 3E - Construindo Uma Cidade<br/>
D&D 3E - Counter Collection - Vol 1 - Cidades & Subterrâneos</div>
<div style="text-align: left;">
<div style="text-align: center;">
<div style="text-align: left;">
D&D 3E - Divindades e Semideuses<br/>
D&D 3E - Draconomicon - A Toca Vulcânica de Sventsorggviresh<br/>
D&D 3E - Draconomicon - Meio-Dragões - Duas Vezes mais Diversão </div>
</div>
</div>
<div style="text-align: left;">
<div style="text-align: center;">
<div style="text-align: left;">
D&D 3E - Draconomicon - O Livro dos Dragões <br/>
D&D 3E - Escudo do Mestre 3.0<br/>
D&D 3E - Ficha de Personagem 3.0<br/>
D&D 3E - Ficha de Personagem 3.5<br/>
D&D 3E - Ficha de Personagem D20<br/>
D&D 3E - Ficha de Personagem D20 (Completável)<br/>
D&D 3E - Guia Completo para Drows<br/>
D&D 3E - Guia de Talentos e Classes de Prestígio<br/>
D&D 3E - Kit do Mestre 3.5<br/>
D&D 3E - Livro Completo do Arcano<br/>
D&D 3E - Livro Completo do Aventureiro<br/>
D&D 3E - Livro Completo do Divino<br/>
D&D 3E - Livro Completo do Guerreiro<br/>
<div>
<div style="text-align: center;">
<div style="text-align: left;">
D&D 3E - Livro de Referência - Canção e Silêncio</div>
</div>
</div>
<div>
<div style="text-align: center;">
<div style="text-align: left;">
D&D 3E - Livro de Referência - Defensores da Fé<br/>
D&D 3E - Livro de Referência - Linhagens e Tomos<br/>
D&D 3E - Livro de Referência - Mestres Selvagens<br/>
D&D 3E - Livro de Referência - Punhos e Espadas<br/>
D&D 3E - Livro do Jogador 3.5<br/>
<div>
<div style="text-align: center;">
<div style="text-align: left;">
D&D 3E - Livro do Jogador 3.5 (Versão Digital)</div>
</div>
</div>
<div>
<div style="text-align: center;">
<div style="text-align: left;">
D&D 3E - Livro do Mestre 3.5<br/>
D&D 3E - Livro do Mestre 3.5 - Errata</div>
</div>
</div>
<div>
<div style="text-align: center;">
<div style="text-align: left;">
D&D 3E - Livro dos Monstros 3.5</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div style="text-align: left;">
<div style="text-align: center;">
<div style="text-align: left;">
D&D 3E - Livro dos Níveis Épicos<br/>
D&D 3E - Livro dos Psiônicos Expandido <br/>
D&D 3E - Manual de Conversão 3.5<br/>
D&D 3E - Manual de Miniaturas</div>
</div>
</div>
<div style="text-align: left;">
<div style="text-align: center;">
<div style="text-align: left;">
D&D 3E - Manual dos Planos<br/>
<div class="separator" style="clear: both;">
D&D 3E - Map Folio I</div>
<div class="separator" style="clear: both;">
D&D 3E - Map Folio II</div>
<div class="separator" style="clear: both;">
D&D 3E - Masmorras Aleatórias </div>
<div class="separator" style="clear: both;">
D&D 3E - Novos Animais</div>
D&D 3E - Personagem com Classe<br/>
<div>
<div style="text-align: center;">
<div style="text-align: left;">
D&D 3E - Quintessência do Guerreiro</div>
</div>
</div>
D&D 3E - Quintessência do Ladino<br/>
D&D 3E - Quintessência do Ladino - Ficha de Personagem<br/>
D&D 3E - Quintessência do Elfo<br/>
D&D 3E - Tomo de Batalha - O Livro das Nove Espadas<br/>