-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathroyalroad.htm
11477 lines (11477 loc) · 467 KB
/
royalroad.htm
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
<table border="1">
<tr>
<th>cover</th>
<th>title</th>
<th>href</th>
<th>author</th>
<th>author-href</th>
<th>next-chp</th>
<th>last-upd-text</th>
<th>last-upd-href</th>
<th>last-upd-title</th>
<th>last-upd-date</th>
<th>last-upd-ago</th>
<th>last-read-text</th>
<th>last-read-href</th>
<th>last-read-title</th>
<th>last-read-date</th>
<th>last-read-ago</th>
</tr>
<tr>
<td>https://www.royalroadcdn.com/public/covers-large/25-necromancer-by-halosty.jpg?time=1659130352</td>
<td>Necromancer by Halosty</td>
<td>/fiction/25/necromancer-by-halosty</td>
<td>Halosty</td>
<td>/profile/87</td>
<td>/chapter/next/25</td>
<td>Last Update:</td>
<td>/fiction/25/necromancer-by-halosty/chapter/72566/necromancer-chapter-100-epilogue</td>
<td>Necromancer - Chapter 100 (Epilogue)</td>
<td>Thursday, May 26, 2016 5:46:37 PM</td>
<td>6 years </td>
<td>Last Read Chapter:</td>
<td>/fiction/25/necromancer-by-halosty/chapter/111/necromancer-chapter-1</td>
<td>Necromancer - Chapter 1</td>
<td>Saturday, March 30, 2013 2:17:23 AM</td>
<td>9 years </td>
</tr>
<tr>
<td>https://www.royalroadcdn.com/public/covers-full/98-fantasia.jpg</td>
<td>Fantasia</td>
<td>/fiction/98/fantasia</td>
<td>unice5656</td>
<td>/profile/325</td>
<td>/chapter/next/98</td>
<td>Last Update:</td>
<td>/fiction/98/fantasia/chapter/910422/chapter-85</td>
<td>Chapter 85</td>
<td>Friday, May 20, 2022 6:56:12 AM</td>
<td>5 months </td>
<td>Last Read Chapter:</td>
<td>/fiction/98/fantasia/chapter/499/chapter-1</td>
<td>Chapter 1</td>
<td>Wednesday, July 3, 2013 10:34:27 PM</td>
<td>9 years </td>
</tr>
<tr>
<td>https://www.royalroadcdn.com/public/covers-full/403-dont-fear-the-reaper.jpg</td>
<td>Don't Fear the Reaper</td>
<td>/fiction/403/dont-fear-the-reaper</td>
<td>Sturmwalzer</td>
<td>/profile/1609</td>
<td>/chapter/next/403</td>
<td>Last Update:</td>
<td>/fiction/403/dont-fear-the-reaper/chapter/45886/dont-fear-the-reaper-christmas-special</td>
<td>Don't Fear the Reaper - Christmas Special</td>
<td>Thursday, December 24, 2015 5:11:59 PM</td>
<td>6 years </td>
<td>Last Read Chapter:</td>
<td>/fiction/403/dont-fear-the-reaper/chapter/3127/suggestions-criticism-stats-and-skills</td>
<td>Suggestions, criticism, stats and skills</td>
<td>Saturday, August 30, 2014 1:28:31 PM</td>
<td>8 years </td>
</tr>
<tr>
<td>/dist/img/nocover-new-min.png</td>
<td>The Cleansing</td>
<td>/fiction/527/the-cleansing</td>
<td>Korrac</td>
<td>/profile/1257</td>
<td>/chapter/next/527</td>
<td>Last Update:</td>
<td>/fiction/527/the-cleansing/chapter/4321/chapter-2-a-past-is-never-forgotten</td>
<td>Chapter 2 a past is never forgotten</td>
<td>Tuesday, October 28, 2014 2:10:17 PM</td>
<td>8 years </td>
<td>Last Read Chapter:</td>
<td>/fiction/527/the-cleansing/chapter/4137/prologue-the-oddity</td>
<td>Prologue: The Oddity</td>
<td>Tuesday, October 21, 2014 5:54:21 AM</td>
<td>8 years </td>
</tr>
<tr>
<td>/dist/img/nocover-new-min.png</td>
<td>Master of All, Jack of None</td>
<td>/fiction/544/master-of-all-jack-of-none</td>
<td>Mythran</td>
<td>/profile/2368</td>
<td>/chapter/next/544</td>
<td>Last Update:</td>
<td>/fiction/544/master-of-all-jack-of-none/chapter/12321/chapter-016</td>
<td>Chapter 016</td>
<td>Sunday, March 8, 2015 8:05:22 PM</td>
<td>7 years </td>
<td>Last Read Chapter:</td>
<td>/fiction/544/master-of-all-jack-of-none/chapter/4048/chapter-001</td>
<td>Chapter 001</td>
<td>Thursday, October 16, 2014 10:47:28 PM</td>
<td>8 years </td>
</tr>
<tr>
<td>/dist/img/nocover-new-min.png</td>
<td>The Rude Time Stopper</td>
<td>/fiction/717/the-rude-time-stopper</td>
<td>Sudar</td>
<td>/profile/1683</td>
<td></td>
<td>Last Update & Last Read:</td>
<td>/fiction/717/the-rude-time-stopper/chapter/69782/chapter-153-amber-eyes-golden-dragon</td>
<td>Chapter 153 Amber Eyes,Golden Dragon</td>
<td>Wednesday, May 11, 2016 9:44:42 AM</td>
<td>6 years </td>
</tr>
<tr>
<td>https://www.royalroadcdn.com/public/covers-full/807-spectral-regalia.jpg</td>
<td>Spectral Regalia</td>
<td>/fiction/807/spectral-regalia</td>
<td>Zephon</td>
<td>/profile/4259</td>
<td>/chapter/next/807</td>
<td>Last Update:</td>
<td>/fiction/807/spectral-regalia/chapter/555603/new-work-sanctuary-within-entropy-link-is-within</td>
<td>New Work, Sanctuary Within Entropy. Link is within</td>
<td>Wednesday, September 16, 2020 3:49:13 PM</td>
<td>2 years </td>
<td>Last Read Chapter:</td>
<td>/fiction/807/spectral-regalia/chapter/5821/prologue-creation-i</td>
<td>Prologue Creation I</td>
<td>Monday, December 8, 2014 11:05:24 AM</td>
<td>7 years </td>
</tr>
<tr>
<td>https://www.royalroadcdn.com/public/covers-full/1054-tales-of-the-blood-princess-expired-version.jpg</td>
<td>Tales of the Blood Princess (expired version)</td>
<td>/fiction/1054/tales-of-the-blood-princess-expired-version</td>
<td>DocteurNS</td>
<td>/profile/5521</td>
<td>/chapter/next/1054</td>
<td>Last Update:</td>
<td>/fiction/1054/tales-of-the-blood-princess-expired-version/chapter/82865/the-link-not-zelda</td>
<td>The LINK (not Zelda)</td>
<td>Thursday, July 21, 2016 5:13:30 PM</td>
<td>6 years </td>
<td>Last Read Chapter:</td>
<td>/fiction/1054/tales-of-the-blood-princess-expired-version/chapter/7830/v0-01-the-highest-room-of-the-tallest-to</td>
<td>V0.01 – The Highest Room of the Tallest Tower</td>
<td>Saturday, January 10, 2015 10:35:10 PM</td>
<td>7 years </td>
</tr>
<tr>
<td>https://www.royalroadcdn.com/public/covers-full/1439-forgotten-conqueror.jpg</td>
<td>Forgotten Conqueror</td>
<td>/fiction/1439/forgotten-conqueror</td>
<td>Za1d3</td>
<td>/profile/8357</td>
<td>/chapter/next/1439</td>
<td>Last Update:</td>
<td>/fiction/1439/forgotten-conqueror/chapter/497360/decision</td>
<td>Decision</td>
<td>Saturday, May 16, 2020 9:54:51 PM</td>
<td>2 years </td>
<td>Last Read Chapter:</td>
<td>/fiction/1439/forgotten-conqueror/chapter/11117/prologue-chapter-1</td>
<td>Prologue + Chapter 1</td>
<td>Saturday, February 21, 2015 10:13:33 AM</td>
<td>7 years </td>
</tr>
<tr>
<td>/dist/img/nocover-new-min.png</td>
<td>Summoned Hero</td>
<td>/fiction/1618/summoned-hero</td>
<td>ldyrdy</td>
<td>/profile/8244</td>
<td>/chapter/next/1618</td>
<td>Last Update:</td>
<td>/fiction/1618/summoned-hero/chapter/562999/news</td>
<td>news</td>
<td>Thursday, October 1, 2020 6:24:44 PM</td>
<td>2 years </td>
<td>Last Read Chapter:</td>
<td>/fiction/1618/summoned-hero/chapter/12867/00-prologue</td>
<td>00-prologue</td>
<td>Sunday, March 15, 2015 2:47:37 PM</td>
<td>7 years </td>
</tr>
<tr>
<td>https://www.royalroadcdn.com/public/covers-full/1729-change-new-world.jpg</td>
<td>Change: New World</td>
<td>/fiction/1729/change-new-world</td>
<td>Lv1Slime</td>
<td>/profile/3811</td>
<td>/chapter/next/1729</td>
<td>Last Update:</td>
<td>/fiction/1729/change-new-world/chapter/216893/a-short-not-so-overdue-update</td>
<td>A short not so overdue update</td>
<td>Friday, May 18, 2018 7:35:51 PM</td>
<td>4 years </td>
<td>Last Read Chapter:</td>
<td>/fiction/1729/change-new-world/chapter/14075/prologue-summer-cicadas</td>
<td>Prologue: Summer Cicadas</td>
<td>Friday, March 27, 2015 3:23:14 PM</td>
<td>7 years </td>
</tr>
<tr>
<td>https://www.royalroadcdn.com/public/covers-full/1992-the-new-journey-of-an-old-soul.jpg</td>
<td>The New Journey of an Old Soul</td>
<td>/fiction/1992/the-new-journey-of-an-old-soul</td>
<td>Vihyungrang</td>
<td>/profile/6277</td>
<td>/chapter/next/1992</td>
<td>Last Update:</td>
<td>/fiction/1992/the-new-journey-of-an-old-soul/chapter/71838/as-requested-link-to-the-new-story</td>
<td>As requested, link to the new story.</td>
<td>Sunday, May 22, 2016 7:21:21 PM</td>
<td>6 years </td>
<td>Last Read Chapter:</td>
<td>/fiction/1992/the-new-journey-of-an-old-soul/chapter/16739/prologue-facing-judgement</td>
<td>Prologue - Facing Judgement</td>
<td>Wednesday, April 22, 2015 2:02:38 PM</td>
<td>7 years </td>
</tr>
<tr>
<td>/dist/img/nocover-new-min.png</td>
<td>The Parasite of knowledge</td>
<td>/fiction/2300/the-parasite-of-knowledge</td>
<td>vlarto</td>
<td>/profile/10358</td>
<td>/chapter/next/2300</td>
<td>Last Update:</td>
<td>/fiction/2300/the-parasite-of-knowledge/chapter/24822/chapter-8-part-one-two-three</td>
<td>chapter 8: part one two three</td>
<td>Tuesday, July 7, 2015 6:15:02 PM</td>
<td>7 years </td>
<td>Last Read Chapter:</td>
<td>/fiction/2300/the-parasite-of-knowledge/chapter/19957/chapter-1-void-and-rebirth</td>
<td>Chapter 1: Void and rebirth</td>
<td>Sunday, May 24, 2015 9:43:46 AM</td>
<td>7 years </td>
</tr>
<tr>
<td>/dist/img/nocover-new-min.png</td>
<td>The third hero</td>
<td>/fiction/2720/the-third-hero</td>
<td>vlarto</td>
<td>/profile/10358</td>
<td></td>
<td>Last Update & Last Read:</td>
<td>/fiction/2720/the-third-hero/chapter/24755/chapter-1-penultimate-trial</td>
<td>Chapter 1: Penultimate trial</td>
<td>Tuesday, July 7, 2015 5:47:26 AM</td>
<td>7 years </td>
</tr>
<tr>
<td>https://www.royalroadcdn.com/public/covers-full/2850-beyond.jpg</td>
<td>Beyond?</td>
<td>/fiction/2850/beyond</td>
<td>Andur</td>
<td>/profile/3091</td>
<td>/chapter/next/2850</td>
<td>Last Update:</td>
<td>/fiction/2850/beyond/chapter/53848/epub-pdf-version</td>
<td>Epub/Pdf-Version</td>
<td>Sunday, February 14, 2016 4:51:49 PM</td>
<td>6 years </td>
<td>Last Read Chapter:</td>
<td>/fiction/2850/beyond/chapter/26166/1-beyond-the-curtain</td>
<td>1. ~Beyond the curtain.~</td>
<td>Monday, July 20, 2015 6:08:31 PM</td>
<td>7 years </td>
</tr>
<tr>
<td>https://www.royalroadcdn.com/public/covers-full/3041-new-game-plus.jpg</td>
<td>New Game Plus</td>
<td>/fiction/3041/new-game-plus</td>
<td>Yubi</td>
<td>/profile/17201</td>
<td>/chapter/next/3041</td>
<td>Last Update:</td>
<td>/fiction/3041/new-game-plus/chapter/55607/v2-chapter-6-the-spar</td>
<td>V2 Chapter 6: The Spar</td>
<td>Thursday, February 25, 2016 4:49:56 PM</td>
<td>6 years </td>
<td>Last Read Chapter:</td>
<td>/fiction/3041/new-game-plus/chapter/28211/prologue-story-of-thoth</td>
<td>Prologue: Story of Thoth</td>
<td>Sunday, August 9, 2015 4:41:35 PM</td>
<td>7 years </td>
</tr>
<tr>
<td>/dist/img/nocover-new-min.png</td>
<td>Hardcore OP-ness</td>
<td>/fiction/3253/hardcore-op-ness</td>
<td>Mike777ac</td>
<td>/profile/1298</td>
<td></td>
<td>Last Read Chapter:</td>
<td>/fiction/3253/hardcore-op-ness/chapter/63942/chapter-11-noob-quest</td>
<td>Chapter 11: Noob-Quest</td>
<td>Sunday, April 10, 2016 11:18:08 PM</td>
<td>6 years </td>
</tr>
<tr>
<td>https://www.royalroadcdn.com/public/covers-full/3619-silver-death.jpg</td>
<td>Silver Death</td>
<td>/fiction/3619/silver-death</td>
<td>Shinsori</td>
<td>/profile/16744</td>
<td></td>
</tr>
<tr>
<td>https://www.royalroadcdn.com/public/covers-full/3666-i-was-reincarnated-as-a-magic-academy.jpg</td>
<td>I was reincarnated as a Magic Academy!</td>
<td>/fiction/3666/i-was-reincarnated-as-a-magic-academy</td>
<td>DragomirCM</td>
<td>/profile/20086</td>
<td>/chapter/next/3666</td>
<td>Last Update:</td>
<td>/fiction/3666/i-was-reincarnated-as-a-magic-academy/chapter/326950/chapter-96-the-end-of-pirate-island</td>
<td>Chapter 96: The end of Pirate Island</td>
<td>Tuesday, January 22, 2019 10:54:44 AM</td>
<td>3 years </td>
<td>Last Read Chapter:</td>
<td>/fiction/3666/i-was-reincarnated-as-a-magic-academy/chapter/35148/chapter-1-im-a-whaaat</td>
<td>Chapter 1: I'm a WHAAAT?!</td>
<td>Wednesday, October 7, 2015 4:03:23 PM</td>
<td>7 years </td>
</tr>
<tr>
<td>https://www.royalroadcdn.com/public/covers-full/3667-100-luck-and-the-dragon-tamer-skill.jpg</td>
<td>100 Luck and the Dragon Tamer Skill!</td>
<td>/fiction/3667/100-luck-and-the-dragon-tamer-skill</td>
<td>DragomirCM</td>
<td>/profile/20086</td>
<td>/chapter/next/3667</td>
<td>Last Update:</td>
<td>/fiction/3667/100-luck-and-the-dragon-tamer-skill/chapter/326955/side-story-5-the-drunk-ghost</td>
<td>Side Story (5) The Drunk Ghost</td>
<td>Tuesday, January 22, 2019 11:04:31 AM</td>
<td>3 years </td>
<td>Last Read Chapter:</td>
<td>/fiction/3667/100-luck-and-the-dragon-tamer-skill/chapter/35153/chapter-1-the-ominous-message</td>
<td>Chapter 1: The Ominous Message!</td>
<td>Wednesday, October 7, 2015 4:34:09 PM</td>
<td>7 years </td>
</tr>
<tr>
<td>https://www.royalroadcdn.com/public/covers-full/3754-andurs-oneshot-collection.jpg</td>
<td>Andur's Oneshot collection</td>
<td>/fiction/3754/andurs-oneshot-collection</td>
<td>Andur</td>
<td>/profile/3091</td>
<td>/chapter/next/3754</td>
<td>Last Update:</td>
<td>/fiction/3754/andurs-oneshot-collection/chapter/701677/charity</td>
<td>Charity?</td>
<td>Friday, June 18, 2021 6:18:41 PM</td>
<td>16 months </td>
<td>Last Read Chapter:</td>
<td>/fiction/3754/andurs-oneshot-collection/chapter/436128/a-timeline</td>
<td>A Timeline?</td>
<td>Wednesday, December 18, 2019 8:16:05 PM</td>
<td>2 years </td>
</tr>
<tr>
<td>https://www.royalroadcdn.com/public/covers-full/3966-lord-shadow.jpg</td>
<td>LORD SHADOW</td>
<td>/fiction/3966/lord-shadow</td>
<td>keikokumars</td>
<td>/profile/2225</td>
<td></td>
<td>Last Read Chapter:</td>
<td>/fiction/3966/lord-shadow/chapter/38412/prologue-lord-shadow</td>
<td>PROLOGUE: LORD SHADOW</td>
<td>Sunday, November 1, 2015 4:17:24 AM</td>
<td>7 years </td>
</tr>
<tr>
<td>/dist/img/nocover-new-min.png</td>
<td>Of Monsters & Men</td>
<td>/fiction/4023/of-monsters-men</td>
<td>TheImp</td>
<td>/profile/20900</td>
<td>/chapter/next/4023</td>
<td>Last Update:</td>
<td>/fiction/4023/of-monsters-men/chapter/47909/chapter-seven</td>
<td>Chapter Seven</td>
<td>Thursday, January 7, 2016 10:41:13 PM</td>
<td>6 years </td>
<td>Last Read Chapter:</td>
<td>/fiction/4023/of-monsters-men/chapter/38992/prologue-lioth</td>
<td>Prologue (Lioth)</td>
<td>Thursday, November 5, 2015 5:20:29 AM</td>
<td>6 years </td>
</tr>
<tr>
<td>/dist/img/nocover-new-min.png</td>
<td>Slave Tyrant</td>
<td>/fiction/4144/slave-tyrant</td>
<td>Braizo</td>
<td>/profile/21981</td>
<td>/chapter/next/4144</td>
<td>Last Update:</td>
<td>/fiction/4144/slave-tyrant/chapter/40538/note-from-author</td>
<td>Note from Author</td>
<td>Monday, November 16, 2015 11:45:46 PM</td>
<td>6 years </td>
<td>Last Read Chapter:</td>
<td>/fiction/4144/slave-tyrant/chapter/40493/death-of-the-master-demon-race</td>
<td>Death of the Master Demon Race</td>
<td>Monday, November 16, 2015 2:13:32 PM</td>
<td>6 years </td>
</tr>
<tr>
<td>https://www.royalroadcdn.com/public/covers-full/4242-world-seed.jpg</td>
<td>World Seed</td>
<td>/fiction/4242/world-seed</td>
<td>karami92</td>
<td>/profile/4890</td>
<td>/chapter/next/4242</td>
<td>Last Update:</td>
<td>/fiction/4242/world-seed/chapter/215170/announcement-the-sun-emerges-from-behind-the-clouds</td>
<td>Announcement: The Sun Emerges From Behind the Clouds!!</td>
<td>Saturday, May 12, 2018 3:28:11 PM</td>
<td>4 years </td>
<td>Last Read Chapter:</td>
<td>/fiction/4242/world-seed/chapter/41564/chapter-0-prologue</td>
<td>Chapter 0: Prologue</td>
<td>Wednesday, November 25, 2015 1:04:16 AM</td>
<td>6 years </td>
</tr>
<tr>
<td>https://www.royalroadcdn.com/public/covers-full/4293-the-iron-teeth-a-goblins-tale.jpg</td>
<td>The Iron Teeth: A Goblin's Tale</td>
<td>/fiction/4293/the-iron-teeth-a-goblins-tale</td>
<td>ClearMadness</td>
<td>/profile/21812</td>
<td>/chapter/next/4293</td>
<td>Last Update:</td>
<td>/fiction/4293/the-iron-teeth-a-goblins-tale/chapter/398871/new-book-release-worldshift-virtual-revolution</td>
<td>New Book Release, Worldshift: Virtual Revolution</td>
<td>Tuesday, September 3, 2019 9:01:40 PM</td>
<td>3 years </td>
<td>Last Read Chapter:</td>
<td>/fiction/4293/the-iron-teeth-a-goblins-tale/chapter/42070/prologue-the-shattering-of-ways</td>
<td>Prologue: The Shattering of Ways</td>
<td>Saturday, November 28, 2015 6:20:48 PM</td>
<td>6 years </td>
</tr>
<tr>
<td>https://www.royalroadcdn.com/public/covers-full/4629-the-daily-diary-of-a-mushroom.jpg</td>
<td>The Daily Diary of a Mushroom</td>
<td>/fiction/4629/the-daily-diary-of-a-mushroom</td>
<td>projecthamster</td>
<td>/profile/23686</td>
<td>/chapter/next/4629</td>
<td>Last Update:</td>
<td>/fiction/4629/the-daily-diary-of-a-mushroom/chapter/310386/chapter-39-day-184-185-the-mushroom-and-the-duke</td>
<td>Chapter 39: ~Day 184-185~ The Mushroom and the Duke</td>
<td>Tuesday, November 27, 2018 11:39:41 PM</td>
<td>3 years </td>
<td>Last Read Chapter:</td>
<td>/fiction/4629/the-daily-diary-of-a-mushroom/chapter/45695/before-the-diary-prologue</td>
<td>Before the diary - Prologue</td>
<td>Wednesday, December 23, 2015 2:25:25 PM</td>
<td>6 years </td>
</tr>
<tr>
<td>https://www.royalroadcdn.com/public/covers-full/4676-how-do-you-qa-test-a-tsundere-android.jpg</td>
<td>How Do You QA Test a Tsundere Android!?</td>
<td>/fiction/4676/how-do-you-qa-test-a-tsundere-android</td>
<td>DarkClaymore</td>
<td>/profile/20485</td>
<td>/chapter/next/4676</td>
<td>Last Update:</td>
<td>/fiction/4676/how-do-you-qa-test-a-tsundere-android/chapter/222448/announcement-classmancers-my-new-story-about-moba</td>
<td>Announcement: Classmancers, my new story about MOBA Esport</td>
<td>Friday, June 8, 2018 4:17:10 PM</td>
<td>4 years </td>
<td>Last Read Chapter:</td>
<td>/fiction/4676/how-do-you-qa-test-a-tsundere-android/chapter/46167/test-1-anomalia-s-interview</td>
<td>Test 1: Anomalia’s Interview</td>
<td>Saturday, December 26, 2015 9:41:59 PM</td>
<td>6 years </td>
</tr>
<tr>
<td>https://www.royalroadcdn.com/public/covers-full/4697-sole-survivor.jpg</td>
<td>Sole Survivor</td>
<td>/fiction/4697/sole-survivor</td>
<td>IHW</td>
<td>/profile/23905</td>
<td>/chapter/next/4697</td>
<td>Last Update:</td>
<td>/fiction/4697/sole-survivor/chapter/554220/chapter-87-chasing-shadow</td>
<td>Chapter 87: Chasing Shadow</td>
<td>Sunday, September 13, 2020 7:41:24 PM</td>
<td>2 years </td>
<td>Last Read Chapter:</td>
<td>/fiction/4697/sole-survivor/chapter/46506/chapter-1-sole-survivor</td>
<td>Chapter 1: Sole Survivor</td>
<td>Tuesday, December 29, 2015 6:24:14 AM</td>
<td>6 years </td>
</tr>
<tr>
<td>https://www.royalroadcdn.com/public/covers-full/4699-old-the-dark-inheritor.jpg</td>
<td>Old: The Dark Inheritor</td>
<td>/fiction/4699/old-the-dark-inheritor</td>
<td>DeathBlackShadoz</td>
<td>/profile/23837</td>
<td>/chapter/next/4699</td>
<td>Last Update:</td>
<td>/fiction/4699/old-the-dark-inheritor/chapter/121336/moving-to-a-new-account-revamping-these-</td>
<td>Moving to a New Account, Revamping these Chapters, and Continuing this Story</td>
<td>Tuesday, February 28, 2017 5:11:12 AM</td>
<td>5 years </td>
<td>Last Read Chapter:</td>
<td>/fiction/4699/old-the-dark-inheritor/chapter/46508/chapter-1-a-boring-day</td>
<td>Chapter 1: A Boring Day</td>
<td>Tuesday, December 29, 2015 6:24:30 AM</td>
<td>6 years </td>
</tr>
<tr>
<td>https://www.royalroadcdn.com/public/covers-full/5029-the-blue-mage-raised-by-dragons.jpg</td>
<td>The Blue Mage Raised by Dragons</td>
<td>/fiction/5029/the-blue-mage-raised-by-dragons</td>
<td>Virlyce</td>
<td>/profile/25023</td>
<td>/chapter/next/5029</td>
<td>Last Update:</td>
<td>/fiction/5029/the-blue-mage-raised-by-dragons/chapter/898120/book-5-afterword</td>
<td>Book 5 Afterword</td>
<td>Sunday, May 1, 2022 1:01:01 PM</td>
<td>6 months </td>
<td>Last Read Chapter:</td>
<td>/fiction/5029/the-blue-mage-raised-by-dragons/chapter/144884/update</td>
<td>Update</td>
<td>Monday, June 26, 2017 2:18:54 PM</td>
<td>5 years </td>
</tr>
<tr>
<td>https://www.royalroadcdn.com/public/covers-full/5132-on-hold-regarding-my-time-being-a-god-it-was-fun.jpg</td>
<td>(On Hold) Regarding my time being a God, it was fun</td>
<td>/fiction/5132/on-hold-regarding-my-time-being-a-god-it-was-fun</td>
<td>oddhatter</td>
<td>/profile/23864</td>
<td>/chapter/next/5132</td>
<td>Last Update:</td>
<td>/fiction/5132/on-hold-regarding-my-time-being-a-god-it-was-fun/chapter/67322/not-a-chapter-apology-future</td>
<td>(Not a chapter) Apology & Future</td>
<td>Wednesday, April 27, 2016 6:14:40 PM</td>
<td>6 years </td>
<td>Last Read Chapter:</td>
<td>/fiction/5132/on-hold-regarding-my-time-being-a-god-it-was-fun/chapter/51632/volume-one-prologue-and-chapter-001</td>
<td>[Volume One] Prologue and Chapter 001</td>
<td>Sunday, January 31, 2016 11:27:55 PM</td>
<td>6 years </td>
</tr>
<tr>
<td>https://www.royalroadcdn.com/public/covers-full/5288-how-to-avoid-death-on-a-daily-basis.jpg</td>
<td>How to Avoid Death on a Daily Basis</td>
<td>/fiction/5288/how-to-avoid-death-on-a-daily-basis</td>
<td>mooderino</td>
<td>/profile/23609</td>
<td>/chapter/next/5288</td>
<td>Last Update:</td>
<td>/fiction/5288/how-to-avoid-death-on-a-daily-basis/chapter/777885/just-a-bit-longer</td>
<td>Just a bit longer</td>
<td>Tuesday, November 2, 2021 8:30:17 PM</td>
<td>11 months </td>
<td>Last Read Chapter:</td>
<td>/fiction/5288/how-to-avoid-death-on-a-daily-basis/chapter/53415/1-where-are-we</td>
<td>1. Where Are We?</td>
<td>Friday, February 12, 2016 3:53:24 AM</td>
<td>6 years </td>
</tr>
<tr>
<td>https://www.royalroadcdn.com/public/covers-full/5696-gods-trials.jpg</td>
<td>God's Trials</td>
<td>/fiction/5696/gods-trials</td>
<td>Haruimi</td>
<td>/profile/27290</td>
<td>/chapter/next/5696</td>
<td>Last Update:</td>
<td>/fiction/5696/gods-trials/chapter/125638/chapter-101-absentee-instructors-part-5</td>
<td>Chapter 101 - Absentee Instructors (Part 5)</td>
<td>Wednesday, March 22, 2017 9:54:07 PM</td>
<td>5 years </td>
<td>Last Read Chapter:</td>
<td>/fiction/5696/gods-trials/chapter/58090/chapter-1-the-before-prologue-daichi-par</td>
<td>Chapter 1 The Before - Prologue: Daichi (Part 1)</td>
<td>Friday, March 11, 2016 5:52:05 AM</td>
<td>6 years </td>
</tr>
<tr>
<td>https://www.royalroadcdn.com/public/covers-full/5701-savage-divinity.jpg</td>
<td>Savage Divinity</td>
<td>/fiction/5701/savage-divinity</td>
<td>ruffwriter</td>
<td>/profile/27392</td>
<td>/chapter/next/5701</td>
<td>Last Update:</td>
<td>/fiction/5701/savage-divinity/chapter/1000695/chapter-840-the-end</td>
<td>Chapter 840: The End</td>
<td>Saturday, September 24, 2022 12:00:05 AM</td>
<td>1 month </td>
<td>Last Read Chapter:</td>
<td>/fiction/5701/savage-divinity/chapter/337979/chapter-426</td>
<td>Chapter 426</td>
<td>Wednesday, February 27, 2019 1:00:02 AM</td>
<td>3 years </td>
</tr>
<tr>
<td>https://www.royalroadcdn.com/public/covers-full/6639-rise-of-the-fallen.jpg</td>
<td>Rise of the Fallen</td>
<td>/fiction/6639/rise-of-the-fallen</td>
<td>Tyranny</td>
<td>/profile/30136</td>
<td>/chapter/next/6639</td>
<td>Last Update:</td>
<td>/fiction/6639/rise-of-the-fallen/chapter/75471/chapter-7-the-golden-lotus</td>
<td>Chapter 7: The Golden Lotus</td>
<td>Saturday, June 11, 2016 8:00:53 AM</td>
<td>6 years </td>
<td>Last Read Chapter:</td>
<td>/fiction/6639/rise-of-the-fallen/chapter/70420/prologue-the-fallens</td>
<td>Prologue: the Fallens</td>
<td>Saturday, May 14, 2016 7:30:28 PM</td>
<td>6 years </td>
</tr>
<tr>
<td>https://www.royalroadcdn.com/public/covers-full/6694-the-path-to-ascension.jpg</td>
<td>The path to ascension</td>
<td>/fiction/6694/the-path-to-ascension</td>
<td>M3qkzr</td>
<td>/profile/30957</td>
<td>/chapter/next/6694</td>
<td>Last Update:</td>
<td>/fiction/6694/the-path-to-ascension/chapter/100973/chapter-15</td>
<td>Chapter 15</td>
<td>Wednesday, November 2, 2016 3:54:52 PM</td>
<td>5 years </td>
<td>Last Read Chapter:</td>
<td>/fiction/6694/the-path-to-ascension/chapter/71079/chapter-1-the-meeting</td>
<td>Chapter 1: The meeting</td>
<td>Wednesday, May 18, 2016 3:35:50 PM</td>
<td>6 years </td>
</tr>
<tr>
<td>https://www.royalroadcdn.com/public/covers-full/6752-lament-of-the-fallen.jpg</td>
<td>Lament of the Fallen</td>
<td>/fiction/6752/lament-of-the-fallen</td>
<td>Vihyungrang</td>
<td>/profile/6277</td>
<td>/chapter/next/6752</td>
<td>Last Update:</td>
<td>/fiction/6752/lament-of-the-fallen/chapter/313867/new-story-up</td>
<td>New story up</td>
<td>Sunday, December 9, 2018 8:26:10 PM</td>
<td>3 years </td>
<td>Last Read Chapter:</td>
<td>/fiction/6752/lament-of-the-fallen/chapter/71833/prologue-part-1</td>
<td>Prologue - part 1</td>
<td>Sunday, May 22, 2016 7:06:00 PM</td>
<td>6 years </td>
</tr>
<tr>
<td>https://www.royalroadcdn.com/public/covers-full/6773-the-vespidian.jpg</td>
<td>The Vespidian</td>
<td>/fiction/6773/the-vespidian</td>
<td>Sintress</td>
<td>/profile/31243</td>
<td>/chapter/next/6773</td>
<td>Last Update:</td>
<td>/fiction/6773/the-vespidian/chapter/985126/battle-of-bronson-city-chapter-4-interlude-ambush</td>
<td>Battle of Bronson City Chapter 4 Interlude Ambush</td>
<td>Friday, September 2, 2022 5:18:02 PM</td>
<td>1 month </td>
<td>Last Read Chapter:</td>
<td>/fiction/6773/the-vespidian/chapter/72090/contamination-chapter-1</td>
<td>Contamination, Chapter 1</td>
<td>Tuesday, May 24, 2016 5:04:43 AM</td>
<td>6 years </td>
</tr>
<tr>
<td>https://www.royalroadcdn.com/public/covers-full/7183-crashed-into-fantasy.jpg</td>
<td>Crashed Into Fantasy</td>
<td>/fiction/7183/crashed-into-fantasy</td>
<td>xacual</td>
<td>/profile/19195</td>
<td>/chapter/next/7183</td>
<td>Last Update:</td>
<td>/fiction/7183/crashed-into-fantasy/chapter/465081/stolen-yet-again</td>
<td>Stolen yet again?</td>
<td>Friday, March 6, 2020 1:17:39 AM</td>
<td>2 years </td>
<td>Last Read Chapter:</td>
<td>/fiction/7183/crashed-into-fantasy/chapter/77146/prologue-part-1</td>
<td>Prologue Part 1</td>
<td>Monday, June 20, 2016 3:55:56 AM</td>
<td>6 years </td>
</tr>
<tr>
<td>https://www.royalroadcdn.com/public/covers-full/7297-apathy.jpg</td>
<td>Apathy</td>
<td>/fiction/7297/apathy</td>
<td>nomoresilence</td>
<td>/profile/32789</td>
<td>/chapter/next/7297</td>
<td>Last Update:</td>
<td>/fiction/7297/apathy/chapter/1023924/b-swords-of-emperor-1</td>
<td>{ B } Swords of Emperor { 1 }</td>
<td>Tuesday, October 25, 2022 7:24:38 PM</td>
<td>6 days </td>
<td>Last Read Chapter:</td>
<td>/fiction/7297/apathy/chapter/79092/nothing-good-ever-comes-from-a-suicide</td>
<td>Nothing good ever comes from a suicide.</td>
<td>Thursday, June 30, 2016 9:35:51 PM</td>
<td>6 years </td>
</tr>
<tr>
<td>https://www.royalroadcdn.com/public/covers-full/7509-world-keeper.jpg</td>
<td>World Keeper</td>
<td>/fiction/7509/world-keeper</td>
<td>karami92</td>
<td>/profile/4890</td>
<td>/chapter/next/7509</td>
<td>Last Update:</td>
<td>/fiction/7509/world-keeper/chapter/1026924/chapter-868-make-a-wish</td>
<td>Chapter 868: Make A Wish</td>
<td>Saturday, October 29, 2022 10:44:20 PM</td>
<td>2 days </td>
<td>Last Read Chapter:</td>
<td>/fiction/7509/world-keeper/chapter/165822/not-a-chapter-art-gallery</td>
<td>Not a Chapter! Art Gallery!</td>
<td>Tuesday, October 3, 2017 8:55:57 PM</td>
<td>5 years </td>
</tr>
<tr>
<td>https://www.royalroadcdn.com/public/covers-full/7578-demons-journey.jpg</td>
<td>Demon's Journey</td>
<td>/fiction/7578/demons-journey</td>
<td>Virlyce</td>
<td>/profile/25023</td>
<td>/chapter/next/7578</td>
<td>Last Update:</td>
<td>/fiction/7578/demons-journey/chapter/147880/afterword</td>
<td>Afterword</td>
<td>Monday, July 10, 2017 9:21:35 PM</td>
<td>5 years </td>
<td>Last Read Chapter:</td>
<td>/fiction/7578/demons-journey/chapter/82548/chapter-0-prologue</td>
<td>Chapter 0: Prologue</td>
<td>Tuesday, July 19, 2016 9:22:34 PM</td>
<td>6 years </td>
</tr>
<tr>
<td>https://www.royalroadcdn.com/public/covers-full/7599-how-to-tame-your-princess.jpg</td>
<td>How To Tame Your Princess</td>
<td>/fiction/7599/how-to-tame-your-princess</td>
<td>DocteurNS</td>
<td>/profile/5521</td>
<td>/chapter/next/7599</td>
<td>Last Update:</td>
<td>/fiction/7599/how-to-tame-your-princess/chapter/475700/halfway-there-sowwy</td>
<td>Halfway there? (Sowwy...)</td>
<td>Wednesday, April 1, 2020 4:00:00 AM</td>
<td>2 years </td>
<td>Last Read Chapter:</td>
<td>/fiction/7599/how-to-tame-your-princess/chapter/344280/info-announcements-recommendations</td>
<td>Info, Announcements & Recommendations</td>
<td>Monday, March 18, 2019 7:36:30 PM</td>
<td>3 years </td>
</tr>
<tr>
<td>https://www.royalroadcdn.com/public/covers-full/8100-binary-soul.jpg</td>
<td>Binary Soul</td>
<td>/fiction/8100/binary-soul</td>
<td>Exterminatus</td>
<td>/profile/35662</td>
<td>/chapter/next/8100</td>
<td>Last Update:</td>
<td>/fiction/8100/binary-soul/chapter/107617/afterword-q-a-with-the-author</td>
<td>Afterword: Q&A with the author</td>
<td>Wednesday, December 14, 2016 6:22:58 PM</td>
<td>5 years </td>
<td>Last Read Chapter:</td>
<td>/fiction/8100/binary-soul/chapter/89127/chapter-0-prologues-without-titles-are-a</td>
<td>Chapter 0 - Prologues without titles are a sign the author is lazy</td>
<td>Wednesday, August 24, 2016 2:51:41 AM</td>
<td>6 years </td>
</tr>
<tr>
<td>https://www.royalroadcdn.com/public/covers-full/8220-mythrans-master-of-all-continued-completed.jpg</td>
<td>Mythran's Master Of All - Continued (Completed!)</td>
<td>/fiction/8220/mythrans-master-of-all-continued-completed</td>
<td>Bokuboy</td>
<td>/profile/35409</td>
<td>/chapter/next/8220</td>
<td>Last Update:</td>
<td>/fiction/8220/mythrans-master-of-all-continued-completed/chapter/317150/new-story</td>
<td>New Story!</td>
<td>Friday, December 21, 2018 10:12:55 AM</td>
<td>3 years </td>
<td>Last Read Chapter:</td>
<td>/fiction/8220/mythrans-master-of-all-continued-completed/chapter/90880/chapter-17-aftermath</td>
<td>Chapter 17 - Aftermath</td>
<td>Friday, September 2, 2016 7:06:23 PM</td>
<td>6 years </td>
</tr>
<tr>
<td>https://www.royalroadcdn.com/public/covers-full/8463-the-arcane-emperor.jpg</td>
<td>The Arcane Emperor</td>
<td>/fiction/8463/the-arcane-emperor</td>
<td>Aternus</td>
<td>/profile/29978</td>
<td>/chapter/next/8463</td>
<td>Last Update:</td>
<td>/fiction/8463/the-arcane-emperor/chapter/378975/chapter-193-gilded-feathers</td>
<td>Chapter 193: Gilded Feathers</td>
<td>Saturday, July 6, 2019 3:03:03 AM</td>
<td>3 years </td>
<td>Last Read Chapter:</td>
<td>/fiction/8463/the-arcane-emperor/chapter/220710/chapter-109-borrowing-natural-laws</td>
<td>Chapter 109: Borrowing Natural Laws</td>
<td>Saturday, June 2, 2018 5:00:19 AM</td>
<td>4 years </td>
</tr>
<tr>
<td>https://www.royalroadcdn.com/public/covers-full/8894-everybody-loves-large-chests.jpg</td>
<td>Everybody Loves Large Chests</td>
<td>/fiction/8894/everybody-loves-large-chests</td>
<td>Exterminatus</td>
<td>/profile/35662</td>
<td>/chapter/next/8894</td>
<td>Last Update:</td>
<td>/fiction/8894/everybody-loves-large-chests/chapter/478517/afterword-and-qa</td>
<td>Afterword and Q&A</td>
<td>Monday, April 6, 2020 11:49:39 PM</td>
<td>2 years </td>
<td>Last Read Chapter:</td>
<td>/fiction/8894/everybody-loves-large-chests/chapter/99919/prologue</td>
<td>Prologue</td>
<td>Thursday, October 27, 2016 11:52:50 AM</td>
<td>6 years </td>
</tr>
<tr>
<td>https://www.royalroadcdn.com/public/covers-full/9337-mythical-conquest.jpg</td>
<td>Mythical Conquest</td>
<td>/fiction/9337/mythical-conquest</td>
<td>Tsura_Alvah</td>
<td>/profile/51201</td>
<td>/chapter/next/9337</td>
<td>Last Update:</td>
<td>/fiction/9337/mythical-conquest/chapter/285038/im-back-bitches</td>
<td>I'm back, Bitches!</td>
<td>Saturday, August 25, 2018 6:48:57 PM</td>
<td>4 years </td>
<td>Last Read Chapter:</td>
<td>/fiction/9337/mythical-conquest/chapter/105095/prologue-the-scumbag-human-and-the-selfi</td>
<td>Prologue: The Scumbag Human And The Selfish God</td>
<td>Tuesday, November 29, 2016 4:53:51 AM</td>
<td>5 years </td>
</tr>
<tr>
<td>https://www.royalroadcdn.com/public/covers-full/9500-the-eagles-flight.jpg</td>
<td>The Eagle's Flight</td>
<td>/fiction/9500/the-eagles-flight</td>
<td>Quill</td>
<td>/profile/51856</td>
<td>/chapter/next/9500</td>
<td>Last Update:</td>
<td>/fiction/9500/the-eagles-flight/chapter/947500/245-journeys-beginning</td>
<td>245. Journey's Beginning</td>
<td>Wednesday, July 13, 2022 7:00:30 AM</td>
<td>3 months </td>
<td>Last Read Chapter:</td>
<td>/fiction/9500/the-eagles-flight/chapter/106718/1-journeys-end</td>
<td>1. Journey's End</td>
<td>Friday, December 9, 2016 3:25:40 AM</td>
<td>5 years </td>
</tr>
<tr>
<td>https://www.royalroadcdn.com/public/covers-full/9885-eye-of-the-tiger.jpg?time=1634671101</td>
<td>Star Justice: Eye of the Tiger</td>
<td>/fiction/9885/star-justice-eye-of-the-tiger</td>
<td>michaelscottearle</td>
<td>/profile/49017</td>
<td>/chapter/next/9885</td>
<td>Last Update:</td>
<td>/fiction/9885/star-justice-eye-of-the-tiger/chapter/850961/chapter-18</td>
<td>Chapter 18</td>
<td>Tuesday, February 22, 2022 4:12:49 PM</td>
<td>8 months </td>
<td>Last Read Chapter:</td>
<td>/fiction/9885/star-justice-eye-of-the-tiger/chapter/111110/chapter-1</td>
<td>Chapter 1</td>
<td>Friday, January 6, 2017 12:36:18 AM</td>
<td>5 years </td>
</tr>
<tr>
<td>https://www.royalroadcdn.com/public/covers-full/10211-necrotourists.jpg</td>
<td>Necrotourists</td>
<td>/fiction/10211/necrotourists</td>
<td>Adsterhappy</td>
<td>/profile/54512</td>
<td>/chapter/next/10211</td>
<td>Last Update:</td>
<td>/fiction/10211/necrotourists/chapter/704169/the-republic-of-gravia-25-trivial</td>
<td>The Republic of Gravia - 25: Trivial</td>
<td>Wednesday, June 23, 2021 6:38:39 AM</td>
<td>16 months </td>
<td>Last Read Chapter:</td>
<td>/fiction/10211/necrotourists/chapter/114736/prologue</td>
<td>Prologue</td>
<td>Wednesday, January 25, 2017 7:46:23 AM</td>
<td>5 years </td>
</tr>
<tr>
<td>https://www.royalroadcdn.com/public/covers-full/10381-maou-shoujo-magical-chaos.jpg?time=1587478507</td>
<td>Maou Shoujo Magical Chaos</td>
<td>/fiction/10381/maou-shoujo-magical-chaos</td>
<td>Meakashi</td>
<td>/profile/28975</td>
<td>/chapter/next/10381</td>
<td>Last Update:</td>
<td>/fiction/10381/maou-shoujo-magical-chaos/chapter/953177/epilogue-worlds-beyond</td>
<td>Epilogue - Worlds Beyond</td>
<td>Thursday, July 21, 2022 12:42:21 PM</td>
<td>3 months </td>
<td>Last Read Chapter:</td>
<td>/fiction/10381/maou-shoujo-magical-chaos/chapter/200333/chapter-86-downtime-for-our-heroes</td>
<td>Chapter 86 - Downtime For Our Heroes</td>
<td>Sunday, March 11, 2018 8:37:26 PM</td>
<td>4 years </td>
</tr>
<tr>
<td>/dist/img/nocover-new-min.png</td>
<td>World Keeper AU [DEAD - AWAITING REWRITE]</td>
<td>/fiction/10515/world-keeper-au-dead-awaiting-rewrite</td>
<td>Keeward</td>
<td>/profile/50976</td>
<td>/chapter/next/10515</td>
<td>Last Update:</td>
<td>/fiction/10515/world-keeper-au-dead-awaiting-rewrite/chapter/698069/small-rewrite-progress-update</td>
<td>Small Rewrite Progress Update</td>
<td>Saturday, June 12, 2021 11:58:01 AM</td>
<td>16 months </td>
<td>Last Read Chapter:</td>
<td>/fiction/10515/world-keeper-au-dead-awaiting-rewrite/chapter/118450/prologue</td>
<td>Prologue</td>
<td>Sunday, February 12, 2017 2:49:42 PM</td>
<td>5 years </td>
</tr>
<tr>
<td>https://www.royalroadcdn.com/public/covers-full/10703-the-godkings-legacy.jpg?time=1595046810</td>
<td>The Godking's Legacy</td>
<td>/fiction/10703/the-godkings-legacy</td>
<td>Virlyce</td>
<td>/profile/25023</td>
<td>/chapter/next/10703</td>
<td>Last Update:</td>
<td>/fiction/10703/the-godkings-legacy/chapter/1027892/volume-5-chapter-25-escape-technique-4</td>
<td>Volume 5 Chapter 25 - Escape Technique (4)</td>
<td>Monday, October 31, 2022 1:01:02 PM</td>
<td>10 hours </td>
<td>Last Read Chapter:</td>
<td>/fiction/10703/the-godkings-legacy/chapter/120977/chapter-0-prologue</td>
<td>Chapter 0 - Prologue</td>
<td>Sunday, February 26, 2017 4:05:16 AM</td>
<td>5 years </td>
</tr>
<tr>
<td>https://www.royalroadcdn.com/public/covers-full/10748-junkyard-magician.jpg</td>
<td>Junkyard Magician</td>
<td>/fiction/10748/junkyard-magician</td>
<td>nomoresilence</td>
<td>/profile/32789</td>
<td>/chapter/next/10748</td>
<td>Last Update:</td>
<td>/fiction/10748/junkyard-magician/chapter/990191/55-full-time</td>
<td>55 Full time.</td>
<td>Friday, September 9, 2022 7:37:12 AM</td>
<td>1 month </td>
<td>Last Read Chapter:</td>
<td>/fiction/10748/junkyard-magician/chapter/976137/a-promise</td>
<td>A promise</td>
<td>Sunday, August 21, 2022 2:09:30 AM</td>
<td>2 months </td>
</tr>
<tr>
<td>https://www.royalroadcdn.com/public/covers-full/10756-new-the-dark-inheritor.jpg</td>
<td>New: The Dark Inheritor</td>