-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathold_data.json
More file actions
2762 lines (2762 loc) · 194 KB
/
old_data.json
File metadata and controls
2762 lines (2762 loc) · 194 KB
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
{
"2012": [
{
"award": "Best Pokémon Chaptered Fic",
"nominee_thread_link": "http://www.serebiiforums.com/showthread.php?561603-Survival-Project-(PG-13)",
"nominator_user_id": 302815,
"comment": "Probably one of the most original stories I have ever read, Pokemon oriented or otherwise. The characters will enrage you, and warm your heart. Beautifully described and wonderfully written, this story has characters that verge on being perfect. The characters hold this story together in a web of flaws, dreams, and hope in a way that is hard to match."
},
{
"award": "Best Pokémon Chaptered Fic",
"nominee_thread_link": "http://www.serebiiforums.com/showthread.php?427130-Anima-Ex-Machina-(PG-15)",
"nominator_user_id": 302815,
"comment": "If you want a thrill ride full of character struggle, amazingly descriptive battles, and an intricate plot that sucks you in deeper with every chapter, then look no further. Not only is JX Valentine one of the most talented authors I've ever seen, but her fic has depth and emotion that can't be fully explained until you read it."
},
{
"award": "Best Pokémon One-Shot",
"nominee_thread_link": "http://www.serebiiforums.com/showthread.php?574736-The-Motionless-Journey-of-Youngster-Ian",
"nominator_user_id": 302815,
"comment": "Wonderfully written and incredibly original, Psychic takes a look at a mechanic in the games that I had never thought about. While parts of the story made me laugh, other parts made me sad, while a lot of it just weirded me out in a very pleasant way."
},
{
"award": "Best Plot",
"nominee_thread_link": "http://www.serebiiforums.com/showthread.php?568749-Brothers-Bond-(PG-13)",
"nominator_user_id": 302815,
"comment": "Characters who act on something solely out of love usually rub me the wrong way; but not here. The gorgeous story that Sid87 has created makes you believe in a bond that you can't touch or see. By far one of my favorite stories on the board, and I still get excited for every chapter."
},
{
"award": "Most Original Overall",
"nominee_thread_link": "http://www.serebiiforums.com/showthread.php?427130-Anima-Ex-Machina-(PG-15)",
"nominator_user_id": 302815,
"comment": "Out of all the fic's I read, this by far takes the cake for originality. Aliens, mutation, violence, endless forests, etc. How could you go wrong?"
},
{
"award": "Best Writing Style",
"nominee_thread_link": "http://www.serebiiforums.com/showthread.php?587431-The-Leaf-Green-Incident-(PG-15)",
"nominator_user_id": 302815
},
{
"award": "Best Description",
"nominee_thread_link": "http://www.serebiiforums.com/showthread.php?562980-Pokemon-Mystery-Dungeon-Overthrown",
"nominator_user_id": 302815
},
{
"award": "Best Setting",
"nominee_thread_link": "https://www.serebiiforums.com/showthread.php?495784-Revenant-(rated-R)",
"nominator_user_id": 302815
},
{
"award": "Best Character Development",
"nominee_thread_link": "http://www.serebiiforums.com/showthread.php?568749-Brothers-Bond-(PG-13)",
"nominator_user_id": 302815
},
{
"award": "Best Romantic Relationship",
"detail": "Bill/Lanette",
"nominee_thread_link": "http://www.serebiiforums.com/showthread.php?427130-Anima-Ex-Machina-(PG-15)",
"nominator_user_id": 302815,
"comment": "I hope I'm not the only one who thinks they actually have a relationship haha. It could be said that they don't, but when I think of Best Romantic Relationship, they are instantly where my mind goes. Sure, Bill may be somewhat transformed, and Lanette gets pretty violent with him quite often, but I believe there is a very obvious love beneath everything happening in this story that really inspires."
},
{
"award": "Best Non-Romantic Relationship/Interaction",
"detail": "Sam and Barry",
"nominee_thread_link": "http://www.serebiiforums.com/showthread.php?568749-Brothers-Bond-(PG-13)",
"nominator_user_id": 302815
},
{
"award": "Best Original Species",
"detail": "Ixodida",
"nominee_thread_link": "http://www.serebiiforums.com/showthread.php?427130-Anima-Ex-Machina-(PG-15)",
"nominator_user_id": 302815,
"comment": "Seriously, like anyone else could even come close to topping these horribly awesome creatures."
},
{
"award": "Most Suspenseful Fic",
"nominee_thread_link": "http://www.serebiiforums.com/showthread.php?562980-Pokemon-Mystery-Dungeon-Overthrown",
"nominator_user_id": 302815,
"comment": "From paragraph to paragraph while reading this fic, I usually inch closer and closer to the screen to the point that I start seeing spots. So yeah, pretty suspenseful."
},
{
"award": "Most Heartbreaking Fic",
"nominee_thread_link": "http://www.serebiiforums.com/showthread.php?561603-Survival-Project-(PG-13)",
"nominator_user_id": 302815,
"comment": "Only fic this year that has actually made me sniffle"
},
{
"award": "Best Trainer Fic",
"nominee_thread_link": "http://www.serebiiforums.com/showthread.php?568749-Brothers-Bond-(PG-13)",
"nominator_user_id": 302815,
"comment": "For all the reasons I listed before, and so many more. If you are reading this then you are hereby commanded to read this story"
},
{
"award": "Best Horror Fic",
"nominee_thread_link": "https://www.serebiiforums.com/showthread.php?495784-Revenant-(rated-R)",
"nominator_user_id": 302815,
"comment": "Space. Pokemon. Suicide. Murder. Dreams that you read about that give you ACTUAL nightmares. Blood. Kthnx"
},
{
"award": "Best Comedy Fic",
"nominee_thread_link": "http://www.serebiiforums.com/showthread.php?564423-404-Error",
"nominator_user_id": 302815,
"comment": "Though I've never commented on his work, Missingno. Master writes a wonderful tale full of Glitch Pokemon and hilarious facepalm moments. I'm not really into Comedy, but this has me hooked."
},
{
"award": "Best Fantasy/Sci-Fi Fic",
"nominee_thread_link": "https://www.serebiiforums.com/showthread.php?495784-Revenant-(rated-R)",
"nominator_user_id": 302815,
"comment": "Easily the best in this genre, SilentMemento will take you on a terrifying thrill ride into space and into a person that'll shake you down to your bones!"
},
{
"award": "Best Pokémon Mystery Dungeon Fic",
"nominee_thread_link": "http://www.serebiiforums.com/showthread.php?562980-Pokemon-Mystery-Dungeon-Overthrown",
"nominator_user_id": 302815,
"comment": "To be completely honest, I'm not too crazy about the PMD games, or even really the fics, but this one changed my mind on the entire concept. Thrilling characters, addictive battles, and casual heroics all combine to make this a very compelling story. Bought my first PMD game two weeks ago haha"
},
{
"award": "Best Pokémon-Centric",
"nominee_thread_link": "http://www.serebiiforums.com/showthread.php?562980-Pokemon-Mystery-Dungeon-Overthrown",
"nominator_user_id": 302815
},
{
"award": "Best Human Main Character",
"detail": "Sam",
"nominee_thread_link": "http://www.serebiiforums.com/showthread.php?568749-Brothers-Bond-(PG-13)",
"nominator_user_id": 302815,
"comment": "This was hard for me at first. I tried to think of the qualities that would be needed for someone to win this, but I couldn't figure out what they were. So I thought about out of all the fic's I read, who I would trust the most to show compassion, decency, love, and respect to anyone. That right there is Sammy Stark."
},
{
"award": "Best Non-Human Main Character",
"detail": "Senori",
"nominee_thread_link": "http://www.serebiiforums.com/showthread.php?561603-Survival-Project-(PG-13)",
"nominator_user_id": 302815,
"comment": "This is a no-brainer for me, and anyone who hasn't checked out this character yet needs to get on it. Fantastically deep and overwhelmingly personal, Senori is a Pokemon that anyone can relate to and care about."
},
{
"award": "Best Human Supporting Character",
"detail": "Glover",
"nominee_thread_link": "http://www.serebiiforums.com/showthread.php?533562-As-the-World-Turns-Back-Around",
"nominator_user_id": 302815,
"comment": "From the love for his daughter that bleeds across the screen, to his plethora of amazing Pokemon and his can-do attitude, Glover is one of the biggest things that holds this story together."
},
{
"award": "Best Non-Human Supporting Character",
"detail": "Tiny",
"nominee_thread_link": "http://www.serebiiforums.com/showthread.php?533562-As-the-World-Turns-Back-Around",
"nominator_user_id": 302815,
"comment": "Completely hilarious and prone to all sorts of endearing moments."
},
{
"award": "Funniest Character",
"detail": "Orange",
"nominee_thread_link": "http://www.serebiiforums.com/showthread.php?564423-404-Error",
"nominator_user_id": 302815
},
{
"award": "Most Memorable Quote",
"detail": "\"I’m gonna terrorize all the ecos!\"",
"nominee_thread_link": "http://www.serebiiforums.com/showthread.php?568749-Brothers-Bond-(PG-13)",
"nominator_user_id": 302815
},
{
"award": "Best Established Writer",
"nominee_user_link": "http://www.serebiiforums.com/member.php?388-Dragonfree",
"nominator_user_id": 302815,
"comment": "She has one of my favorite trainer stories, and has been writing it for a LONG time"
},
{
"award": "Most Dedicated Writer",
"nominee_user_link": "http://www.serebiiforums.com/member.php?438-FlamingRuby",
"nominator_user_id": 302815,
"comment": "No matter how many chapters that he/she puts out that don't get reviewed, he/she keeps on going. I love it"
},
{
"award": "Most Improved Writer",
"nominee_user_link": "http://www.serebiiforums.com/member.php?146882-Blue-Saturday",
"nominator_user_id": 302815,
"comment": "Gotta agree with DP here. Though he/she still has a ways to go, I keep getting impressed by how hard she/he tries"
},
{
"award": "Most Helpful Reviewer",
"nominee_user_link": "http://www.serebiiforums.com/member.php?298929-Sid87",
"nominator_user_id": 302815,
"comment": "Always points out grammar mistakes and oversights on my part. He always devotes a lot of time to my story when reviewing. That alone deserves a nomination from me, but after shooting through the board for so long and seeing that he does it for so many people, really means he deserves it"
},
{
"award": "Most Dedicated Reviewer",
"nominee_user_link": "http://www.serebiiforums.com/member.php?73786-diamondpearl876",
"nominator_user_id": 302815,
"comment": "Usually the first one to review every time I put out a chapter. Since she started reviewing my fic, she hasn't missed a single one. Love it"
},
{
"award": "Best Pokémon Chaptered Fic",
"nominee_thread_link": "http://www.serebiiforums.com/showthread.php?568749-Brothers-Bond-(PG-13)",
"nominator_user_id": 234423
},
{
"award": "Best Pokémon One-Shot",
"nominee_thread_link": "http://www.serebiiforums.com/showthread.php?574719-The-Alpha-Dex-(rated-PG)",
"nominator_user_id": 234423
},
{
"award": "Best Plot",
"nominee_thread_link": "http://www.serebiiforums.com/showthread.php?568749-Brothers-Bond-(PG-13)",
"nominator_user_id": 234423
},
{
"award": "Most Original Overall",
"nominee_thread_link": "http://www.serebiiforums.com/showthread.php?584581-Crack-d-or-How-the-Love-of-Seafood-Saved-Unova",
"nominator_user_id": 234423
},
{
"award": "Best Setting",
"nominee_thread_link": "http://www.serebiiforums.com/showthread.php?564423-404-Error",
"nominator_user_id": 234423
},
{
"award": "Best Romantic Relationship",
"detail": "Orange/Violet",
"nominee_thread_link": "http://www.serebiiforums.com/showthread.php?564423-404-Error",
"nominator_user_id": 234423
},
{
"award": "Best Non-Romantic Relationship/Interaction",
"detail": "Sammy/Tommy",
"nominee_thread_link": "http://www.serebiiforums.com/showthread.php?568749-Brothers-Bond-(PG-13)",
"nominator_user_id": 234423
},
{
"award": "Best Comedy Fic",
"nominee_thread_link": "http://www.serebiiforums.com/showthread.php?574719-The-Alpha-Dex-(rated-PG)",
"nominator_user_id": 234423
},
{
"award": "Best Comedy Fic",
"nominee_thread_link": "http://www.serebiiforums.com/showthread.php?564423-404-Error",
"nominator_user_id": 234423
},
{
"award": "Most Helpful Reviewer",
"nominee_user_link": "http://www.serebiiforums.com/member.php?141463-JX-Valentine",
"nominator_user_id": 302815
},
{
"award": "Most Dedicated Reviewer",
"nominee_user_link": "http://www.serebiiforums.com/member.php?298929-Sid87",
"nominator_user_id": 302815
},
{
"award": "Best Pokémon Chaptered Fic",
"nominee_thread_link": "http://www.serebiiforums.com/showthread.php?565021-Requiem-(PG-13)",
"nominator_user_id": 67858
},
{
"award": "Best Description",
"nominee_thread_link": "http://www.serebiiforums.com/showthread.php?568749-Brothers-Bond-(PG-13)",
"nominator_user_id": 67858
},
{
"award": "Best Established Writer",
"nominee_user_link": "http://www.serebiiforums.com/member.php?141463-JX-Valentine",
"nominator_user_id": 67858
},
{
"award": "Best New Writer",
"nominee_user_link": "http://www.serebiiforums.com/member.php?302815-Sidewinder",
"nominator_user_id": 67858
},
{
"award": "Most Helpful Reviewer",
"nominee_user_link": "http://www.serebiiforums.com/member.php?30139-Air-Dragon",
"nominator_user_id": 67858
},
{
"award": "Most Dedicated Reviewer",
"nominee_user_link": "http://www.serebiiforums.com/member.php?302815-Sidewinder",
"nominator_user_id": 67858
},
{
"award": "Most Frightening Scene",
"detail": "\"Little-Wit\"",
"nominee_thread_link": "http://www.serebiiforums.com/showthread.php?566626-Carry-On-Blissey-(PG-13)",
"comment": "Generally the whole story of Little Wit. Abortion or child murder chapters fright me up",
"nominator_user_id": 293445
},
{
"award": "Most Heartwarming Scene",
"detail": "\"Hm. How about you tell me what's been going inside your head since you woke up? Maybe that will tell me more about you.\"\r\n\r\nDo I tell her? Tell her that I...like her? No, not yet. It wouldn't be right. She's clearly still upset about the possibility of us not making it out...Maybe later would be better. I looked back at her. \"There isn't much to tell. Obviously, waking up as Pokemon is terrifying.\"\r\n\r\nApril gave me an odd look. \"What's so bad about being a Pokemon?\"\r\n\r\n\"Er, that's not what I meant. All I'm saying is that I know I'm supposed to be a human. Randomly waking up as a different species would be scary, wouldn't it? Not to mention not being able to remember anything. Imagine if you woke up as a human and couldn't remember anything. You'd be freaked out, wouldn't you?\"\r\n\r\nApril nodded. \"I guess I see your point. Go on.\"\r\n\r\n\"So while I attempted to even just stand up in my strange new form, you showed up. At first, you actually kinda scared me, haha.\" I let out a small chuckle.\r\n\r\n\"What do you mean?\" April was giving me that odd look again.\r\n\r\n\"Well, I suppose I'm used to being taller. And when I saw you, I thought you were some sort of giant squirrel monster or something. But then-but then I-\" I was stumbling at that point. I couldn't decide whether to tell her my feelings or not.\r\n\r\n\"But you what?\"\r\n\r\n\"Um, then I realized I wasn't so tall and that you were only as tall as me. I hadn't remembered all the Pokemon names at once, but I knew you were one of them.\"\r\n\r\n\"Uh-huh. I know there's more than that...\" She looked at me with a serious gaze.\r\n\r\nWhat!? Am I really that transparent? Oh no, now what? I fumbled for words. \"Er, um, well you see, when I saw you...a-and that sparkle that you had on your coat...it-it\"\r\n\r\n\"Oh boy...why does this always happen? I had suspected as much. You like me, don't you? Like, you know, like me, like me?\"\r\n\r\n\"Wha!? Er, um, uh, no, not at all! Well, uh, yeah. Yeah, I do...\" I was looking at the ground again. This isn't when I wanted to bring this up!\r\n\r\nApril sighed. \"I knew it...I've caught you just randomly staring at me. It looked like you were daydreaming. But you weren't. You were staring at me. Well, I suppose its to be expected. I am incredibly good-looking after all, teehee!\" She seemed happier. I thought that was odd.\r\n\r\nShe looked as if finding out made her upset. But...she's all giggly again. Could that mean? No, don't get your hopes. Arg! I can't believe it! What am I thinking!? How could I have let that feeling go crazy again? People...humans...aren't supposed to like Pokemon! But denying this feeling is getting harder and harder. I've got to turn back soon!\r\n\r\nI shook my head, clearing my thoughts. \"Look, April, it doesn't matter how I feel. That's the Pachirisu talking. I'm really a human. It would...it would never work out...\"\r\n\r\n\"What do you mean? You are the Pachirisu! At least, you are now!\"\r\n\r\n\"I just don't want to get all attached to you. In fact, it'd be worse for you if you became that way towards me. I'm still trying to turn back, remember? If I were to go back, this Pachirisu would be gone. I wouldn't be here. I'd be back with my friends, my family. As a human. And if you grew to like me...in that way...then imagine how hurt you'd be? I couldn't stand to do that to anyone. I just couldn't.\"\r\n\r\nApril was silent for a while. Then she put her paw on mine. \"Then don't. Stay with me instead. Imagine the adventures we could have together! Doesn't...doesn't that sound like fun?\" She was giving me a shy, sideways glance.\r\n\r\nI took my paw away. All of this was getting way too touchy-feely for my taste. \"No, please, don't do that to me. Just, stop. Stop it...Don't make me choose!\" What am I saying, of course I'd go home. I can't like a Pokemon!\r\n\r\n\"Shane! You're gonna have to decide eventually!\"\r\n\r\nI looked at her suddenly, confused. \"You...you called me Shane.\"",
"nominee_thread_link": "http://www.serebiiforums.com/showthread.php?576305-Through-the-Thunder-and-the-Lightning",
"nominator_user_id": 293445
},
{
"award": "Most Memorable Quote",
"detail": "\"... as the Headmaster was often described as ‘Super Effective against everyone’.\"",
"nominee_thread_link": "http://www.serebiiforums.com/showthread.php?584574-Pok%E9mon-Mystery-Dungeon-The-Seekers-of-Light",
"comment": "you know what is my Reaction to this quote? **** Arceus! This eevee kicks *** like bad*** Wigglytuff. Fear the idiot ones!",
"nominator_user_id": 293445
},
{
"award": "Best Description",
"nominee_thread_link": "http://www.serebiiforums.com/showthread.php?562980-Pokemon-Mystery-Dungeon-Overthrown",
"nominator_user_id": 293445
},
{
"award": "Best Non-Romantic Relationship/Interaction",
"detail": "Matron and Spiritomb",
"nominee_thread_link": "http://www.serebiiforums.com/showthread.php?566626-Carry-On-Blissey-%28PG",
"nominator_user_id": 293445
},
{
"award": "Best Setting",
"nominee_thread_link": "http://www.serebiiforums.com/showthread.php?587972-Champion-Alliance",
"nominator_user_id": 293445
},
{
"award": "Best Character Development",
"nominee_thread_link": "http://www.serebiiforums.com/showthread.php?557311-Butterfree-(one-shot-G)",
"nominator_user_id": 293445
},
{
"award": "Best Romantic Relationship",
"detail": "Sparky and April",
"nominee_thread_link": "http://www.serebiiforums.com/showthread.php?576305-Through-the-Thunder-and-the-Lightning",
"comment": "Sparky (the pachirisu) and April (the shiny emolga) VS Raichu and Criminal Sneasel\n\nWell what d you know. This part is so touch that it tackles the aspects of love relationships. What could make it so badass? That would be making two couples fight against each other!",
"nominator_user_id": 293445
},
{
"award": "Best Pokémon Mystery Dungeon Fic",
"nominee_thread_link": "http://www.serebiiforums.com/showthread.php?576305-Through-the-Thunder-and-the-Lightning",
"nominator_user_id": 293445
},
{
"award": "Best Pokémon Mystery Dungeon Fic",
"nominee_thread_link": "http://www.serebiiforums.com/showthread.php?562980-Pokemon-Mystery-Dungeon-Overthrown",
"nominator_user_id": 293445
},
{
"award": "Best Pokémon-Centric",
"nominee_thread_link": "http://www.serebiiforums.com/showthread.php?566626-Carry-On-Blissey-%28PG",
"nominator_user_id": 293445
},
{
"award": "Best Human Main Character",
"detail": "Kip Blackburn",
"nominee_thread_link": "http://www.serebiiforums.com/showthread.php?592256-Au%F0n",
"nominator_user_id": 293445
},
{
"award": "Best Human Supporting Character",
"detail": "Vodyanoy",
"nominee_thread_link": "http://www.serebiiforums.com/showthread.php?592256-Au%F0n",
"nominator_user_id": 293445
},
{
"award": "Best Non-Human Supporting Character",
"detail": "Jay",
"nominee_thread_link": "http://www.serebiiforums.com/showthread.php?562980-Pokemon-Mystery-Dungeon-Overthrown",
"nominator_user_id": 293445
},
{
"award": "Most Helpful Reviewer",
"nominee_user_link": "http://www.serebiiforums.com/member.php?126092-Skiyomi",
"comment": "Heck, this reviewer gave me the most amount of advice last year. One reason As to why I undergo extreme revising in all of my works. My examples below are the reasons why she deserved this award. Though she only did it once in my Feli chronicles, it also helped me in my works, Goodbye Human, and Valiant Emblem",
"nominator_user_id": 293445
},
{
"award": "Most Helpful Reviewer",
"nominee_user_link": "http://www.serebiiforums.com/member.php?36001-Kutie-Pie",
"comment": "Knows what is a balanced discussion",
"nominator_user_id": 293445
},
{
"award": "Best Pokémon Chaptered Fic",
"nominee_thread_link": "http://www.serebiiforums.com/showthread.php?561603-Survival-Project-%28PG-13%29",
"nominator_user_id": 298929
},
{
"award": "Best Pokémon One-Shot",
"nominee_thread_link": "http://www.serebiiforums.com/showthread.php?586756-Mischief-%28One-Shot-Rated-G%29",
"nominator_user_id": 298929
},
{
"award": "Best Plot",
"nominee_thread_link": "http://www.serebiiforums.com/showthread.php?562980-Pokemon-Mystery-Dungeon-Overthrown",
"nominator_user_id": 298929
},
{
"award": "Most Original Overall",
"nominee_thread_link": "http://www.serebiiforums.com/showthread.php?581578-Out-Of-My-League",
"nominator_user_id": 298929
},
{
"award": "Best Writing Style",
"nominee_thread_link": "http://www.serebiiforums.com/showthread.php?561603-Survival-Project-%28PG-13%29",
"nominator_user_id": 298929
},
{
"award": "Best Description",
"nominee_thread_link": "http://www.serebiiforums.com/showthread.php?562980-Pokemon-Mystery-Dungeon-Overthrown",
"nominator_user_id": 298929
},
{
"award": "Best Setting",
"nominee_thread_link": "http://www.serebiiforums.com/showthread.php?495784-Revenant-%28rated-R%29",
"nominator_user_id": 298929
},
{
"award": "Best Expansion of Canon",
"nominee_thread_link": "http://www.serebiiforums.com/showthread.php?457372-Roots-PG-13",
"nominator_user_id": 298929
},
{
"award": "Best Characterization in a Short Story",
"nominee_thread_link": "http://www.serebiiforums.com/showthread.php?576682-Embrace",
"nominator_user_id": 298929
},
{
"award": "Best Non-Romantic Relationship/Interaction",
"detail": "Dorian/Shelton",
"nominee_thread_link": "http://www.serebiiforums.com/showthread.php?565021-Requiem-%28PG-13%29",
"nominator_user_id": 298929
},
{
"award": "Most Suspenseful Fic",
"nominee_thread_link": "http://www.serebiiforums.com/showthread.php?543597-The-Legendarian-Chronicles-Revision-11",
"nominator_user_id": 298929
},
{
"award": "Most Heartbreaking Fic",
"nominee_thread_link": "http://www.serebiiforums.com/showthread.php?566626-Carry-On-Blissey-(PG-13)",
"nominator_user_id": 298929
},
{
"award": "Best Trainer Fic",
"nominee_thread_link": "http://www.serebiiforums.com/showthread.php?565021-Requiem-%28PG-13%29",
"nominator_user_id": 298929
},
{
"award": "Best Horror Fic",
"nominee_thread_link": "http://www.serebiiforums.com/showthread.php?495784-Revenant-%28rated-R%29",
"nominator_user_id": 298929
},
{
"award": "Best Comedy Fic",
"nominee_thread_link": "http://www.serebiiforums.com/showthread.php?581578-Out-Of-My-League",
"nominator_user_id": 298929
},
{
"award": "Best Pokémon Mystery Dungeon Fic",
"nominee_thread_link": "http://www.serebiiforums.com/showthread.php?562980-Pokemon-Mystery-Dungeon-Overthrown",
"nominator_user_id": 298929
},
{
"award": "Best Pokémon-Centric",
"nominee_thread_link": "http://www.serebiiforums.com/showthread.php?561603-Survival-Project-%28PG-13%29",
"nominator_user_id": 298929
},
{
"award": "Best Canon Character-Centric",
"nominee_thread_link": "http://www.serebiiforums.com/showthread.php?457372-Roots-PG-13",
"nominator_user_id": 298929
},
{
"award": "Best Human Main Character",
"detail": "Dorian",
"nominee_thread_link": "http://www.serebiiforums.com/showthread.php?565021-Requiem-%28PG-13%29",
"nominator_user_id": 298929
},
{
"award": "Best Non-Human Main Character",
"detail": "Kuiora",
"nominee_thread_link": "http://www.serebiiforums.com/showthread.php?561603-Survival-Project-%28PG-13%29",
"nominator_user_id": 298929
},
{
"award": "Best Human Supporting Character",
"detail": "Spencer",
"nominee_thread_link": "http://www.serebiiforums.com/showthread.php?543597-The-Legendarian-Chronicles-Revision-11",
"nominator_user_id": 298929
},
{
"award": "Best Non-Human Supporting Character",
"detail": "Beartic",
"nominee_thread_link": "http://www.serebiiforums.com/showthread.php?567967-Struggle-for-Power-%28PG-13%29",
"nominator_user_id": 298929
},
{
"award": "Best Human Antagonist",
"detail": "Ethan",
"nominee_thread_link": "http://www.serebiiforums.com/showthread.php?565021-Requiem-%28PG-13%29",
"nominator_user_id": 298929
},
{
"award": "Best Non-Human Antagonist",
"detail": "The Revenant",
"nominee_thread_link": "http://www.serebiiforums.com/showthread.php?495784-Revenant-%28rated-R%29",
"nominator_user_id": 298929
},
{
"award": "Best Minor Character",
"detail": "Alec",
"nominee_thread_link": "http://www.serebiiforums.com/showthread.php?562980-Pokemon-Mystery-Dungeon-Overthrown",
"nominator_user_id": 298929
},
{
"award": "Funniest Character",
"detail": "Milly",
"nominee_thread_link": "http://www.serebiiforums.com/showthread.php?581578-Out-Of-My-League",
"nominator_user_id": 298929
},
{
"award": "Most Frightening Scene",
"detail": "“Praise God, ” he muttered. He then shook his head in dismay. “I never thought I’d praise God for a helmet…”\r\n\r\n“No god exists here. They have all abandoned us to slaughter…”\r\n\r\nPokulok whirled around to search for the voice. “Who’s there?” he snapped. He fumbled with his helmet before he slammed it over his head and attached it to his suit.\r\n\r\n“Nothing is here, ” the masculine voice said in a melancholy tone. “You know that. Why can’t you accept it?”\r\n\r\nThe MSE switched on the night vision and looked in the direction of the voice. A shape that had the vague silhouette of a large man was curled against the wall in a position more suited for a fetus. Otherwise, it was far too dark to see any features.\r\n\r\nPokulok gazed at the pitiful figure for a few seconds before he decided to ask the man a question. “What’s your name, sir?” he said in a hushed tone.\r\n\r\nThe man didn’t respond to his inquiry, which served to annoy the younger teen. “Sir?” Pokulok asked in a firmer tone.\r\n\r\nThe man still did not move and showed no indication that he had even heard the question. Anger surged through the MSE’s blood. This was pointless. Why should he risk his life for these people if they were going to be as useful as a sack of flour? He had no time left to waste; he had put his life and the lives of his Pokemon in danger for this man, and he needed an answer now.\r\n\r\n“Sir!” he spat furiously. The man flinched and looked up at him in fear. “Your name. What is it?”\r\n\r\nThe response was so small and weak that he almost couldn’t hear it. “M-Motris. Giror Motris.”\r\n\r\nThe MSE raised his eyebrows in response to the name. “Giror…Motris?” he repeated slowly. “Do you happen to be from Orre?”\r\n\r\nMotris lowered his head. “I don’t know.” He looked up again. “Who are you? Are you a crewmember?”\r\n\r\nThe teenager sighed. “My name is Claude Pokulok. I’m an MSE, and I’m going to get you and the rest of the crew out of he-”\r\n\r\n“No!” The MSE took a step back from the ferocity of the tone. “They’ll kill us if we try!”\r\n\r\nPokulok held his hands up defensively. “Okay, just calm down for a second. Let’s start from the beginning and tell me who you’re talking about. Is it the Revenant?”\r\n\r\nMotris wrung his hands in agitation, although he had thankfully stopped shouting. “I don’t know who they are, man, ” he mumbled. “I just know that they’ll kill us.”\r\n\r\nThe MSE stared in response. “That thing is going to find you in this room either way, ” he said, trying to make his voice sound calm. “We can walk out, and if you’re behind me every step of the way, I can promise that nothing will hurt y-”\r\n\r\n“No, you don’t know anything, man!” Motris interrupted, rising to his feet. He jabbed a finger at Pokulok’s chest. “You don’t know what they want. They want us, man! They want all of us!”\r\n\r\n“Yeah, I know it does. It’s a game to that monster, but I’m not going to do what it wants. If we stick together and-”\r\n\r\n“No, you’re wrong, man. They want us. They need us. You don’t know anything, man. Not a ****ing thing.”\r\n\r\n“So you’re just going to wait for the monster to come and kill you?” the teenager growled incredulously, trying to stop himself from screaming at the man’s idiocy. “That’s a pathetic way of thinking.” He took a deep breath to cool his temper down. “I intend to get out of here with my Pokemon, and you’re more than welcome to come along. I could definitely use your help to get out of this mess.”\r\n\r\n“No, man, we’ll never get out, ” Motris said with an air of finality. He sat down and folded his arms over his chest. “You can’t beat them, ma-”\r\n\r\n“Goddammit, have you been paying any attention to anything I’ve said?!” Pokulok howled, finally losing his patience. “I don’t give a flying **** about what you think! I put my Pokemon’s lives at risk for you, you pessimistic son of a *****! I left them alone in the hangar of this ****ing ship to save you!”\r\n\r\nThe man shuddered. “I-I can’t, man, ” he said. “The spawn will kill us if we go out…”\r\n\r\n“Well, that’s too bad for you, ” the MSE snarled, firmly grabbing Motris by the arm. He involuntarily shivered at the icy-cold touch. “We are going out of this room, and there’s not a damned thing you can do about it. I’m in charge of this situation, and we’re getting out of this hellhole alive. You have one of two choices: you can get on your ****ing feet and walk out of here on your own power or I will drag you out myself, even if you’re kicking and screaming. But you will go out of this room, and I will not allow you to impede my progress. Do – I – make – myself – clear?”\r\n\r\nAfter a few seconds, the man quietly nodded. Pokulok then realized that something that Motris had said seemed hauntingly familiar, especially after recalling Harris’ last moments.\r\n\r\n“Giror, you said something about the ‘spawn’ killing us, ” he said, making sure that his tone wouldn’t provoke the older man further. “What are the spawn?”\r\n\r\nMotris glanced from side to side, almost as if he was afraid of a person overhearing the conversation. “Part of them, ” he said simply.\r\n\r\nThe teenager bit his lip in frustration. The information wasn’t nearly good enough to go on, but he knew that if he pushed the man any more than he had, he risked losing him for good.\r\n\r\n“Alright, ” Pokulok murmured, turning toward Motris. “Now that we have that settled, do you know a way out of this room?”\r\n\r\nThe older man pointed at a metal door that the MSE had not noticed earlier. An emotion that was eerily similar to paranoia had started to dig its way into his brain, and it took the last bit of his courage to force it down.\r\n\r\n“Okay, let’s get out of here, ” Pokulok said in resignation. He walked toward the door, opened it, and nearly jumped out of his skin when he saw what was behind it.\r\n\r\nHe was back in the hangar, and his Pokemon were ten yards away, staring at him in horror.\r\n\r\n“Deifir! Faitios!” He rushed over to them and embraced them tightly. “God, you had me worried. Let’s get out of here; I’ve seen enough to last…”\r\n\r\nThe teenager trailed off when he felt them trembling. He looked into their faces and saw the terror in both of their eyes – terror that was not aimed at him. He didn’t even need to turn around to know that he had been duped by the Revenant again. The pieces – an ungodly mudslide of clues he had missed and hints he had failed to see – had suddenly fallen into place with cruel precision.\r\n\r\nI was a fool! It put the name right in front of me, and I still couldn’t see it! Giror Motris…Rigor mortis…\r\n\r\n“****, ” he muttered despairingly, whirling around and drawing his pistol after hearing an unearthly screech. The entity known as Giror Motris was roaring in agony as its human form slowly dissolved. Its melting eyes met Pokulok’s with a glare of utter loathing as the rest of its body continued its hideous transformation into shadow and tar.\r\n\r\n“****!” The MSE raised his pistol and fired at the monster until the magazine had been emptied. However, it didn’t seem to faze the creature. After realizing that he was out of bullets, he fumbled with ejecting the empty clip, wasting too many precious seconds. He made the mistake of looking up and saw that the monster was shambling toward him with surprising speed. He took out a new clip and tried to load it into the pistol. In his terror, it slipped out of his grasp and clattered to the floor.\r\n\r\nThe teenager let out several obscenities and dove toward his ammo. He managed to snag the magazine with one hand, but the monster had reached him slightly afterward. It grabbed him by the throat with both of its clawed hands and raised him into the air. He thought that it looked up at him, but without its eyes, mouth, or nose, it was almost impossible to truly tell – until its face split into four and bellowed at him, revealing a jumbled mess of distorted facial features behind the mask.\r\n\r\nThe teenager kicked at it and thrashed around, but nothing seemed to break its grip. He was about to give up hope when he remembered that he still had his gun. He felt a strange sense of calm guide him as he loaded the gun, pulled back the hammer, aimed at the monster’s head, and fired six point-blank shots. It let out a bloodcurdling screech and immediately dropped him while it staggered and fell on its back. It melted through the ground as it hit the floor, leaving nothing behind.\r\n\r\nPokulok lay where he fell and breathed rapidly. He was exhausted beyond measure, but as he remembered his Pokemon, he realized that they needed him to be strong. He rolled onto his stomach and slowly got up, gasping at the effort. He stumbled to their side and immediately fell down again. He looked at them and forced a smile on his face, but it quickly faded when they didn’t return the favor. Instead, Faitios sobbed unashamedly into Deifir’s shoulder, while the normally-confident Absol had a defeated look on his face and didn’t even try to comfort the Skarmory. He felt a pang of sorrow hit him as he realized the enormity of what had just happened.\r\n\r\nThe Revenant lied. There were no hostages. It turned the crew into monsters like itself…\r\n\r\nThe MSE was interrupted by the cacophony of familiar laughter. He looked around and noticed the spawn phase through the walls with cruel laughs of their own. His Pokemon let out cries of panic and fled through the door he had come through.\r\n\r\n“No, wait!” the teenager shouted, quickly leaping to his feet and giving chase. “Come back!” He ran at the door, but it slammed shut and locked itself on him as if it were possessed. He kicked the door open, walked through, and immediately shut it on the advancing horde.\r\n\r\nThe scenery had undergone a complete metamorphosis from when he last saw it; it had changed from a tiny room devoid of light to a balcony with a large brightly-lit room below him. Pokulok scanned the room and caught sight of Deifir and Faitios on the lower level, trying to get another door open. He immediately rushed to the edge of the balcony, opening his mouth to yell their names. He never got the chance.\r\n\r\nHe barely felt the subtle shift of his feet leaving the ground. He couldn’t force a scream out of his throat as he twisted his body to lessen the impact. He didn’t even try to fight off the darkness when he hit the ground. The last thought that came to his mind before he slipped into unconsciousness was that he had failed his mission and his friends.",
"nominee_thread_link": "http://www.serebiiforums.com/showthread.php?495784-Revenant-%28rated-R%29",
"nominator_user_id": 298929
},
{
"award": "Most Heartbreaking Scene",
"detail": "I leaned over to get some eye contact with Mew. \"Do you remember me?\" I asked curiously. Mew nodded. When Mew's water had broke, I could tell that Gardevoir really wanted to faint. Sparkles was the first to notice the baby bump breaking it's shape. The hybrid had hatched inside Mew. Mewtwo also hatched inside of Mew when he was born.\r\n\r\n\"I'm Mummy, \" Mew crackled. Normally, pokémon lay eggs. If the egg hatches before its been laid then labour or a caesarian would be the best choice.\r\n\r\n\"I'm going to support Mew's back, \" I said to Sparkles. \"You and Gardevoir can check what's coming out of Mew.\"\r\n\r\nIt was throwing them both into the deep end, but the hard lessons will stick with them. They deserve to be working here and I refuse to let anything make them feel otherwise.\r\n\r\n\"The egg shells are coming out Matron, \" Gardevoir confirmed.\r\n\r\n\"Remove them at once Sparkles, \" I warned, \"The hybrid might get stabbed.\"\r\n\r\n\"Is it out yet?\" Mew asked. She was still just as childish as she was before. It was as if history were repeating itself.\r\n\r\n\"It's just the egg shells at the moment, \" Gardevoir replied. \"Keep pushing... Okay I think the head is coming out. It's covered in blood.\"\r\n\r\n\"Keep pushing, \" I requested to Mew. \"You're doing very well.\"\r\n\r\nMew gave out a massive roar so loud it would make an exploud sound like a feather. After what felt like an earthquake to my ear drums, Mew had expelled the newborn hybrid from it's body.\r\n\r\n\"Can I hold it?\" Mew asked me. \"They never let me hold my babies before.\"",
"nominee_thread_link": "http://www.serebiiforums.com/showthread.php?566626-Carry-On-Blissey-(PG-13)",
"nominator_user_id": 298929
},
{
"award": "Most Heartwarming Scene",
"detail": "Sai was quiet, then he spoke after a few moments: “Do you want to be closer to me or something? Are you feeling like the others are getting more attention or something? I didn’t know. You should have told me.”\r\n\r\nI looked up, caught off guard. “N-No, that’s not—”\r\n\r\n“I don’t know how to be close to people. Or pokémon, for that matter, ” he said solemnly, ignoring me. “I’m not allowed to be close to anyone, so it’s fine. I guess. But if that’s what you want…”\r\n\r\nI waited for him to go on, but he didn’t. He looked at me, his dark blue eyes full of sadness. The panic that he was in at the radio tower had vanished.\r\n\r\nHe went over to the bed and started rummaging through his backpack. He pulled out a marker, which I didn’t even know he had. It made me think that there was no end to the amount of things in his backpack, just like there was no end to the things to the radio.\r\n\r\n“I use it to practice writing sometimes, ” he said. “I don’t know what to do. It might sound weird, I know. I don’t know. We can share a secret about each other, all right? You share one secret, and I’ll share one of mine. You can read my secret, but I won’t read yours. You can write it on my back, and I’ll write yours on a piece of paper, since you don’t wear shirts.”\r\n\r\n“Um, ” was all I could think to say. A secret? About me? About my trainer? I had mixed feelings, as I usually did. I had never told anyone a secret about me since I was too shy. But it would be nice to know my trainer a bit more, and maybe it could help me make my decision…\r\n\r\n“This could make us feel closer, you know? Since that’s what you want, ” Sai went on. He went over to the table in the corner of the room, and picked up the piece of paper that had been lying there since the day we rented out the room. It had all of the pokémon center’s housing rules on it, but he took the marker and wrote over the words. Soon, I would be able to read those words, whatever they were. I noted that it took him a long time to write, as if writing each letter was agonizing for him.\r\n\r\nWhen he was done, he took off his shirt. Since Earl had always told me I shouldn’t look at his body out of self-consciousness, I turned to look away from Sai as well. But then Sai came closer to me and bent down, making it hard to not see him. He handed me the marker and nodded.\r\n\r\n“This is…” I said, trailing off. I didn’t know how to put it. It was weird, writing on a human’s back, was it not? Would it stay there forever? What if someone else saw? Couldn’t I just not write a secret, and Sai would never know?\r\n\r\nBut Sai seemed so calm compared to his panicky demeanor at the radio tower. I wanted to keep him calm. So I took the marker and wrote on his back as quickly as I could to get the awkwardness over with. I didn’t even have to think about what I wrote: I wish I was human.\r\n\r\nYes, I did wish I was a human. If I were human, I would do my absolute best to get rid of my shy demeanor. I’d travel the entire world, see what each city and town had to offer. I’d meet all the great kinds of people out there, and all the terrible kinds of people, too. I wouldn’t have pokémon to protect me; I’d protect myself. And as I traveled, I’d find out what I wanted to do with the rest of my life.\r\n\r\nI wished the same for Sai.\r\n\r\nI had believed that I had done a good job of finally forcing myself to do something I wanted in life. I had believed that I was doing a good thing for Sai by showing him around the city, proving to him that there was more to like than the pokémon that constantly followed him around. Perhaps I had been wrong, because now he was being paranoid. Now he seemed to be crazy again, thinking someone was stalking him, watching his every move. This seemed completely illogical to me, but there was nothing I could say to prove it to him. All I could think was that, at the end of the day, his life revolved around this journey for the gym badges. To him, there was nothing else, and though it bothered me, I couldn’t change him. His emotions and passion were fierce, his eyes set on one goal and one goal only. Still, I would wait out my decision. It wasn’t anything that I had to declare right now, and truthfully, I was afraid of deciding, anyway.",
"nominee_thread_link": "http://www.serebiiforums.com/showthread.php?561603-Survival-Project-%28PG-13%29",
"nominator_user_id": 298929
},
{
"award": "Best Action Scene",
"detail": "Chapter 6",
"nominee_thread_link": "http://www.serebiiforums.com/showthread.php?565021-Requiem-%28PG-13%29",
"comment": "Yeah, that's a WHOLE chapter and not just a scene. I can't find just one part of it I could cut out and hold up as its own \"scene\".",
"nominator_user_id": 298929
},
{
"award": "Best Cliffhanger",
"detail": "Evan winced as Jenny recalled Herdier. He had chosen Zweilous in the first place because it was his most recent capture, having been acquired as a young Deino shortly before his participation in the Pokemon League. Knowing this, Zweilous was easily the least experienced of Evan’s Pokemon, but he had apparently underestimated its sheer power.\r\n\r\n“You may have beaten me, ” Officer Jenny growled, “but you won’t get away! I’ll lock down the station, and—”\r\n\r\nA sharp bang cut her off.\r\n\r\nOfficer Jenny coughed, splattering a red stain on her uniform.\r\n\r\nThe life vanished from her eyes.\r\n\r\nAnd she fell to the floor.\r\n\r\n“Whuh—What the hell?!” Evan cried, rushing to Officer Jenny’s side. He found a hole in her back. “What the hell just—”\r\n\r\n“That would be my handiwork, ” Lunaris said, returning with a smoking gun in his hand, “though I'll admit that it’s not my best.”\r\n\r\n“Did…did you…?” Evan stammered.\r\n\r\n“I did, ” Lunaris said with a disturbingly casual tone in his voice. “Leaving her alive would have made her quite a nuisance. Now, I have my things, including the Pokemon I want to present to Team Rocket. Shall we take our leave?”\r\n\r\nEvan hesitated. He put a finger to his ear.\r\n\r\n“We’re ready for pickup, ” Evan said, the cockiness in his voice completely gone.\r\n\r\n“Roger, ” the pilot said back.\r\n\r\nEvan’s finger fell out of his ear as the rest of his arm dangled limply at his side. Lunaris left, leaving Officer Jenny’s corpse behind to rot. Only one thought ran through Evan’s mind.\r\n\r\nThis wasn’t how it was supposed to be.",
"nominee_thread_link": "http://www.serebiiforums.com/showthread.php?567967-Struggle-for-Power-(PG-13)",
"nominator_user_id": 298929
},
{
"award": "Best Established Writer",
"nominee_user_link": "http://www.serebiiforums.com/member.php?148307-SilentMemento",
"nominator_user_id": 298929
},
{
"award": "Best New Writer",
"nominee_user_link": "http://www.serebiiforums.com/member.php?302815-Sidewinder",
"nominator_user_id": 298929
},
{
"award": "Most Dedicated Writer",
"nominee_user_link": "http://www.serebiiforums.com/member.php?290212-Knightfall",
"nominator_user_id": 298929
},
{
"award": "Most Improved Writer",
"nominee_user_link": "http://www.serebiiforums.com/member.php?917-Chibi-Pika",
"comment": "not that I was around prior to this year to ever think she wasn't as good, but with as many revisions as she does to perfect her work, she deserves it",
"nominator_user_id": 298929
},
{
"award": "Most Helpful Reviewer",
"nominee_user_link": "http://www.serebiiforums.com/member.php?155910-Ememew",
"nominator_user_id": 298929
},
{
"award": "Most Dedicated Reviewer",
"nominee_user_link": "http://www.serebiiforums.com/member.php?73786-diamondpearl876",
"nominator_user_id": 298929
},
{
"award": "Best Pokémon Chaptered Fic",
"nominee_thread_link": "http://www.serebiiforums.com/showthread.php?579000-Max-s-New-Adventures",
"nominator_user_id": 292629
},
{
"award": "Most Original Overall",
"nominee_thread_link": "http://www.serebiiforums.com/showthread.php?566626-Carry-On-Blissey-%28PG",
"nominator_user_id": 292629
},
{
"award": "Best Writing Style",
"nominee_thread_link": "http://www.serebiiforums.com/showthread.php?564423-404-Error",
"nominator_user_id": 292629
},
{
"award": "Best Description",
"nominee_thread_link": "http://www.serebiiforums.com/showthread.php?568749-Brothers-Bond-(PG-13)",
"nominator_user_id": 292629
},
{
"award": "Best Trainer Fic",
"nominee_thread_link": "http://www.serebiiforums.com/showthread.php?579000-Max-s-New-Adventures",
"nominator_user_id": 292629
},
{
"award": "Best Human Main Character",
"detail": "Max",
"nominee_thread_link": "http://www.serebiiforums.com/showthread.php?579000-Max-s-New-Adventures",
"nominator_user_id": 292629
},
{
"award": "Best Established Writer",
"nominee_user_link": "http://www.serebiiforums.com/member.php?57487-bobandbill",
"nominator_user_id": 292629
},
{
"award": "Best New Writer",
"nominee_user_link": "http://www.serebiiforums.com/member.php?309539-RealRaymon",
"nominator_user_id": 292629
},
{
"award": "Most Helpful Reviewer",
"nominee_user_link": "http://www.serebiiforums.com/member.php?141463-JX-Valentine",
"nominator_user_id": 292629
},
{
"award": "Best Pokémon Chaptered Fic",
"nominee_thread_link": "http://www.serebiiforums.com/showthread.php?481252-The-Human-Species-(PG-13)",
"nominator_user_id": 290212
},
{
"award": "Best Pokémon Chaptered Fic",
"nominee_thread_link": "http://www.serebiiforums.com/showthread.php?543597-The-Legendarian-Chronicles-Revision-11",
"nominator_user_id": 290212
},
{
"award": "Best Pokémon One-Shot",
"nominee_thread_link": "http://www.serebiiforums.com/showthread.php?593343-Essence-of-Law-PMD-One-Shot",
"nominator_user_id": 290212
},
{
"award": "Best Non-Pokémon Chaptered Fic",
"nominee_thread_link": "http://www.serebiiforums.com/showthread.php?592256-Au%F0n",
"nominator_user_id": 290212
},
{
"award": "Best Plot",
"nominee_thread_link": "http://www.serebiiforums.com/showthread.php?555041-My-Trip-tothe-End-of-Time-by-Pearl-Gideon",
"comment": "Seriously, anything Cutlerine creates is bound to have an amazing, yet completely fun and mind twistingly complex plot. And this is no exception.",
"nominator_user_id": 290212
},
{
"award": "Most Original Overall",
"nominee_thread_link": "http://www.serebiiforums.com/showthread.php?585188-A-Different-Kind-of-PMD-Story-(A-Vulpix-Tail)",
"comment": "It's a usual PMD story in reverse. A Pokemon becomes human and goes on a journey as a trainer. If that's not mixed up enough, then I'm not sure what else will convince you.",
"nominator_user_id": 290212
},
{
"award": "Most Original Overall",
"nominee_thread_link": "http://www.serebiiforums.com/showthread.php?537322-Pirates-of-the-Caribbean-The-Creature-of-Storms",
"comment": "It has Captain Jack Sparrow training a Zoura and facing off against Kyogre and Groudon. The greatest combination since bread and butter.",
"nominator_user_id": 290212
},
{
"award": "Best Writing Style",
"nominee_thread_link": "http://www.serebiiforums.com/showthread.php?543597-The-Legendarian-Chronicles-Revision-11",
"nominator_user_id": 290212
},
{
"award": "Best Writing Style",
"nominee_thread_link": "http://www.serebiiforums.com/showthread.php?466028-Pokemon-Mystery-Dungeon-Journal",
"nominator_user_id": 290212
},
{
"award": "Best Description",
"nominee_thread_link": "http://www.serebiiforums.com/showthread.php?587581-Pokemon-Mystery-Dungeon-Silverveil-(PG-13)",
"nominator_user_id": 290212
},
{
"award": "Best Setting",
"nominee_thread_link": "http://www.serebiiforums.com/showthread.php?564423-404-Error",
"comment": "A Glitched Kanto Region is all the reason needed here.",
"nominator_user_id": 290212
},
{
"award": "Best Character Development",
"nominee_thread_link": "http://www.serebiiforums.com/showthread.php?568749-Brothers-Bond-(PG-13)",
"comment": "Samuel has come a long was since the beginning of this story. His transformation from a naive kid to learning to fend for himself and pushing forward for the sake of his brother is truly a thrilling ride.",
"nominator_user_id": 290212
},
{
"award": "Best Romantic Relationship",
"detail": "Sparky and April",
"nominee_thread_link": "http://www.serebiiforums.com/showthread.php?576305-Through-the-Thunder-and-the-Lightning",
"nominator_user_id": 290212
},
{
"award": "Best Non-Romantic Relationship/Interaction",
"detail": "Sam and Barry",
"nominee_thread_link": "http://www.serebiiforums.com/showthread.php?568749-Brothers-Bond-(PG-13)",
"comment": "These two are comedic gold. No further explanation is needed.",
"nominator_user_id": 290212
},
{
"award": "Most Suspenseful Fic",
"nominee_thread_link": "http://www.serebiiforums.com/showthread.php?476319-Broken-Promise-The-Story-of-Ash-s-Pidgeot-(Rated-PG)",
"comment": "I was honestly excited with every new update, because I knew I was one step closer to finding out what happens next.",
"nominator_user_id": 290212
},
{
"award": "Best Pokémon Mystery Dungeon Fic",
"nominee_thread_link": "http://www.serebiiforums.com/showthread.php?576305-Through-the-Thunder-and-the-Lightning",
"comment": "There have been quite a few Mystery Dungeon stories this year, though this one is the only one to grab my attention and hold it straight from the start. I've loved seeing the characters and the world around them develop with every new chapter.",
"nominator_user_id": 290212
},
{
"award": "Best Trainer Fic",
"nominee_thread_link": "http://www.serebiiforums.com/showthread.php?564423-404-Error",
"nominator_user_id": 290212
},
{
"award": "Best Horror Fic",
"nominee_thread_link": "http://www.serebiiforums.com/showthread.php?495784-Revenant-(rated-R)",
"nominator_user_id": 290212
},
{
"award": "Best Comedy Fic",
"nominee_thread_link": "http://www.serebiiforums.com/showthread.php?555473-Mary-Sue-Must-Die!-(PG-13)",
"comment": "JX Valentine, I may not have read your other works (though they are on my list), but this is the one I did read and immediately loved. The entire premise and characters are a instant home run.",
"nominator_user_id": 290212
},
{
"award": "Best Fantasy/Sci-Fi Fic",
"nominee_thread_link": "http://www.serebiiforums.com/showthread.php?562420-TRINITY-A-Cybperunk-Pok%E9mon-Fanfiction",
"nominator_user_id": 290212
},
{
"award": "Best Human Main Character",
"detail": "Dorian",
"nominee_thread_link": "http://www.serebiiforums.com/showthread.php?565021-Requiem-(PG-13)",
"nominator_user_id": 290212
},
{
"award": "Best Non-Human Main Character",
"detail": "Heath",
"nominee_thread_link": "http://www.serebiiforums.com/showthread.php?466028-Pokemon-Mystery-Dungeon-Journal",
"comment": "Heath has been an integral part of my time here on the forums. His story was one of the first I ever read and I immediately loved the character as soon as he woke up as a Pokemon.",
"nominator_user_id": 290212
},
{
"award": "Best Human Supporting Character",
"detail": "Barry",
"nominee_thread_link": "http://www.serebiiforums.com/showthread.php?t=568749",
"comment": "Barry is the perfect exmple of a comic relief character done right and also has a great bit of character development.",
"nominator_user_id": 290212
},
{
"award": "Best Non-Human Supporting Character",
"detail": "Mew",
"nominee_thread_link": "http://www.serebiiforums.com/showthread.php?481252-The-Human-Species-(PG-13)",
"nominator_user_id": 290212
},
{
"award": "Best Human Antagonist",
"detail": "Ethan",
"nominee_thread_link": "http://www.serebiiforums.com/showthread.php?565021-Requiem-(PG-13)",
"comment": "I didn't know it was possible to write such evil, but yet, here it is.",
"nominator_user_id": 290212
},
{
"award": "Best Non-Human Antagonist",
"detail": "Spiritomb",
"nominee_thread_link": "http://www.serebiiforums.com/showthread.php?555041-My-Trip-tothe-End-of-Time-by-Pearl-Gideon",
"nominator_user_id": 290212
},
{
"award": "Best Minor Character",
"detail": "Carlos",
"nominee_thread_link": "http://www.serebiiforums.com/showthread.php?568749-Brothers-Bond-(PG-13)",
"nominator_user_id": 290212
},
{
"award": "Funniest Character",
"detail": "Orange",
"nominee_thread_link": "http://www.serebiiforums.com/showthread.php?564423-404-Error",
"comment": "Any character he writes tends to be hilarious.",
"nominator_user_id": 290212
},
{
"award": "Funniest Scene",
"detail": "“Move!” yelled the thin man, shoving me past. The next thing I knew, I'd turned and saw him at the centre of a ring of old folks, their eyes all fixed hungrily on his jigsaw.\r\n\r\n“Come on!” I cried back. “Push on!”\r\n\r\nOne of the old people lashed out at him with a walking stick; he ducked it, put the jigsaw inside his coat and drew out what appeared to be a rapier from his pocket.\r\n\r\n“Go on without me!” he replied, parrying a second blow and slashing at an old woman's snatching hand. “I'll keep them busy!”\r\n\r\n“But your niece—!”\r\n\r\n“She has parents – they can buy her presents.” His blade was a blur, flickering from point to point around the circle as the encircling elderly attacked. “Go!”\r\n\r\n“But—”\r\n\r\n“Go!”\r\n\r\nHe turned to look at me, and it was that momentary lapse of concentration that was his undoing. Someone released a Jack-in-the-box from a shelf into his hand; the Jack's pointy hat jabbed his thumb and he dropped his sword with a yelp. A moment later, he was just a face between the clawing hands of the old people, screaming wildly; a few seconds later, he had vanished entirely in a swell of cardigans and wrinkled skin.\r\n\r\n“No!”\r\n\r\nI lashed out at the nearest old person with my pipe, but I was shoved aside; I was no match for five of them at once. There was nothing more I could do, and if I stood still I would be crushed – so I left the thin man and ran for the Lego.\r\n\r\nAs I got close, I noticed a man on his hands and knees, searching for something on the bottom shelf; I stepped onto his back and jumped off without breaking stride, crashing into the top of the shelves where the Lego was and snatching up the boxes mid-leap. Toys, pieces of wood and one teenager with an armful of Lego rained down on the unfortunates on the other side of the shelf; thankfully, I landed on a fat man's belly, bounced off and kept running. One woman watched me open-mouthed, and shouted in a high, keening wail:\r\n\r\n“He's got Lego!”",
"nominee_thread_link": "http://www.serebiiforums.com/showthread.php?584581-Crack-d-or-How-the-Love-of-Seafood-Saved-Unova",
"comment": "That's not even the entire scene, only a third of it. ",
"nominator_user_id": 290212
},
{
"award": "Most Heartbreaking Scene",
"detail": "This was a dream; this was not the order of events that were supposed to take place. He brought the marker, he would receive the reward, and they would go home; that’s it, done! This did not fit into his life, this was not his path. He knew Ronnie was inside, and he knew that he probably would have no idea what had taken place right outside his office.\r\n\r\nThrough a flickering hallway he followed Kecleon, who had adopted a speed Dorian had never witnessed. The four of them burst through the door to his uncle’s office a moment later, almost tripping over each other in an effort to get through.\r\n\r\nDorian’s heart stopped.\r\n\r\nSmoke billowed across the ceiling while lines of blood crisscrossed the floor in small rivers. The streams of crimson emanated from the body of his uncle, who was lying in the floor, head cocked to the side unnaturally. As Dorian fell to his knees, he saw that the word ‘thief’ had been carved into his uncle’s chest, the letters jagged and deep.\r\n\r\nKecleon started shrieking.",
"nominee_thread_link": "http://www.serebiiforums.com/showthread.php?565021-Requiem-(PG-13)",
"nominator_user_id": 290212
},
{
"award": "Best Action Scene",
"detail": "I looked around the corner again to see another striped firedog, similar to Spencer’s, but this one had a horrifyingly vicious expression right now, causing Typhlosion and Arcanine to recoil slightly, seemingly losing some of the tension in their muscles.\r\n\r\nIt took me a second, but then I recognized what it had done. Her Arcanine must have had the Intimidate ability, which cut the strength of any attacker it encountered.\r\n\r\n“Crap, gonna Intimidate us, is that it?” Spencer mumbled through gritted teeth. “Time for ranged moves, then…Typhlosion, Arcanine! Flamethrower!”\r\n\r\nSimultaneous blasts of fire flew down the hill, striking the other Arcanine right in its front. It snarled as it took the assaults, noticeably affected by them despite its natural resistance to fire. But then suddenly flames were scattered everywhere as a tan horse jumped in the way of the blaze, glowing with a fiery sheen—it didn’t seem to even notice that it was being hit. In fact, the flames of its mane and tail only intensified.\r\n\r\n“Did that just make it stronger?! Oh crap, it must have Flash Fire. Typhlosion, stop the Flamethrower and use Dig! Arcanine—” And then Spencer’s face lit up like he had just made the best realization of his life. “Dude, I’ve got it! Typhlosion, quick—use Flamethrower on Arcanine!!”",
"nominee_thread_link": "http://www.serebiiforums.com/showthread.php?543597-The-Legendarian-Chronicles-Revision-11",
"nominator_user_id": 290212
},
{
"award": "Best Cliffhanger",
"detail": "\"He's…\" the Gallade said while trying to stand up, \"… He's down!\"\r\n\"YES! HAHAHA!\" Pikablu gave off a prideful and loud laughter, \"We did it! We won! Victory is ours!\"\r\n\"Way to go, Zerobi!\" Lucario yelled, the happy feelings of having won turning his joy into actually feelings of being a professional coach. He ignored his pain and smiled brightly at his partner, who still had her back turned to him. Her black and unusually red back…\r\n\r\n\"… Blood…!?\" Lucario exclaimed, angry at himself for not having noticed it sooner. Zerobi stood where she landed after the final attack, her body covered with tiny speckles of blood from the Garchomp. She wasn't saying a word, but was instead shaking profusely.\r\n\r\nLucario got worried and tried to run to her, noticing just how badly damaged his right leg had become from fighting the Garchomp. Whether it had been the constant fiery attacks or the fact that his roundhouse kicks might as well have been directed at a brick wall he did not know. All he knew was that if someone was to happen to Zerobi now, he would…\r\n\r\n\"… Zerobi…?\" Lucario slowly asked, patting the shoulder of his partner.\r\n\r\nIn an instant she spun around with a claw outstretched, cutting through his throat with a quick slash. Blood splayed across the field as time seemed to stop all around them. Pain filled Lucario's head while a gargling sound escaped his throat as he tried to draw breath, but the passageway to his lungs had been completely severed and he began choking instead. He felt his warm blood running the fur on his neck, holding up a hand in a futile attempt of stopping the flow. Falling to his knees from the lack of air, all he could do was stare deeply into the eyes of the smiling Weavile in front of him.\r\n\r\nInside of them, he noticed that there was something unusual.\r\n\r\nNothing.",
"nominee_thread_link": "http://www.serebiiforums.com/showthread.php?481252-The-Human-Species-(PG-13)",
"nominator_user_id": 290212
},
{
"award": "Most Memorable Quote",
"detail": "“I suppose there's nothing we can do, ” Bond said at last, leaning back into his seat. “Never mind. There can't be much further until we arrive.”\r\n\r\nWell, technically you're right, Jeeves, but I like to know where I'm going. The last time I found myself on a train at random, I ended up in City 17. And I ain't no Free Man, so you can guess how that went. Pigzie Doodle sighed. I do realise you can't hear me, but I also find it hard to stop talking. Centuries of travelling alone does that to a person. Anyway, did I ever tell you about Mombasa? There was me, this Gastly and a Misdreavus called Sandy, and we thought it'd be a good idea to possess a couple of elephants...\r\n\r\nAs the train rattled on, his story continued, growing steadily more unbelievable and sadly no less unhearable.",
"nominee_thread_link": "http://www.serebiiforums.com/showthread.php?555041-My-Trip-tothe-End-of-Time-by-Pearl-Gideon",
"comment": "Only Cutlerine could so effortlessly incorporate a reference to the greatest video game of all time.",
"nominator_user_id": 290212
},
{
"award": "Best Established Writer",
"nominee_user_link": "http://www.serebiiforums.com/member.php?196907-ShadedSkies",
"comment": "The guy can write an awesome story.",
"nominator_user_id": 290212
},
{
"award": "Best New Writer",
"nominee_user_link": "http://www.serebiiforums.com/member.php?320580-Shadow-Lucario-50",
"detail": "He's done remarkably well for a first time author.",
"nominator_user_id": 290212
},
{
"award": "Most Dedicated Writer",
"nominee_user_link": "http://www.serebiiforums.com/member.php?917-Chibi-Pika",
"detail": "Only a truly dedicated author would be rewriting a story she began eleven years ago.",
"nominator_user_id": 290212
},
{
"award": "Most Improved Writer",
"nominee_user_link": "http://www.serebiiforums.com/member.php?156899-Brutaka",
"detail": "He started out writing a Mystery Dungeon story that had some description and dull dialogue and now writes quality chapters all within the span of a few months.",
"nominator_user_id": 290212
},
{
"award": "Most Helpful Reviewer",
"nominee_user_link": "http://www.serebiiforums.com/member.php?298929-Sid87",
"detail": "This is somewhat personal, but he's honestly helped me with so much in my story. I wouldn't be were I was today without his efforts to fix my grammar in my story.",
"nominator_user_id": 290212
},
{
"award": "Most Dedicated Reviewer",
"nominee_user_link": "http://www.serebiiforums.com/member.php?302983-Azurus",
"detail": "He'll always get a review done for a story he enjoys, no matter how long it takes.",
"nominator_user_id": 290212
},
{
"award": "Best Pokémon Chaptered Fic",
"nominee_thread_link": "http://www.serebiiforums.com/showthread.php?337927-Pokedex-One-Shots-(PG)",
"nominator_user_id": 309539
},
{
"award": "Best Writing Style",
"nominee_thread_link": "http://www.serebiiforums.com/showthread.php?564423-404-Error",
"nominator_user_id": 309539
},
{
"award": "Best Comedy Fic",
"nominee_thread_link": "http://www.serebiiforums.com/showthread.php?566626-Carry-On-Blissey-(PG-13)",
"comment": "Poor Blissey :D",
"nominator_user_id": 309539
},
{
"award": "Most Helpful Reviewer",
"nominee_user_link": "http://www.serebiiforums.com/member.php?293581-amittal12",
"nominator_user_id": 309539
},
{
"award": "Most Helpful Reviewer",
"nominee_user_link": "http://www.serebiiforums.com/member.php?315888-ultimateblaziken11",
"nominator_user_id": 309539
},
{
"award": "Best Pokémon One-Shot",
"nominee_thread_link": "http://www.serebiiforums.com/showthread.php?584323-Rescue-mission-PG-13",
"nominator_user_id": 309539
},
{
"award": "Best Trainer Fic",
"nominee_thread_link": "http://www.serebiiforums.com/showthread.php?593861-What-now",
"nominator_user_id": 309539
},
{
"award": "Most Dedicated Reviewer",
"nominee_user_link": "http://www.serebiiforums.com/member.php?316430-*PKMN-Trainer-Paddy*",
"nominator_user_id": 309539
},
{
"award": "Most Dedicated Reviewer",
"nominee_user_link": "http://www.serebiiforums.com/member.php?292629-Charizard-Fan",
"nominator_user_id": 309539
},
{
"award": "Most Original Overall",
"nominee_thread_link": "http://www.serebiiforums.com/showthread.php?593861-What-now",
"nominator_user_id": 309539
},
{
"award": "Best New Writer",
"nominee_user_link": "http://www.serebiiforums.com/member.php?290774-TheSirPeras",
"nominator_user_id": 309539
},
{
"award": "Best Established Writer",
"nominee_user_link": "http://www.serebiiforums.com/member.php?5588-Missingno-Master",
"nominator_user_id": 309539
},
{
"award": "Best Pokémon Chaptered Fic",
"nominee_thread_link": "http://www.serebiiforums.com/showthread.php?579000-Max-s-New-Adventures",
"nominator_user_id": 290774
},
{
"award": "Best Pokémon One-Shot",
"nominee_thread_link": "http://www.serebiiforums.com/showthread.php?593061-Book-of-the-Hermit-(one-shot-series)",
"nominator_user_id": 290774
},
{
"award": "Best Plot",
"nominee_thread_link": "http://www.serebiiforums.com/showthread.php?579000-Max-s-New-Adventures",
"nominator_user_id": 290774
},
{
"award": "Best Human Main Character",
"detail": "Stewie",
"nominee_thread_link": "http://www.serebiiforums.com/showthread.php?588005-Stewie-s-Journey-PG13-Family-Guy-Pokemon-Crossover",
"nominator_user_id": 290774
},
{
"award": "Most Heartwarming Scene",
"detail": "(Tears appear on Max's face and he starts crying. Then he becomes serious and shouts with all the confidence he has.)\r\n\r\nMax: \"Kirlia! Gardevoir! Do you hear me? I came back for Ralts like I promised!\" (He waits a bit.) \"I am here to take Ralts with me! Do you remember?\" (Then he starts getting sad.) \"No, this can't be...Ralts, are you here, my dear friend? I came back for you!\"\r\n\r\n(After that a wind starts blowing at Max and he sees a familiar blue light.)",
"nominee_thread_link": "http://www.serebiiforums.com/showthread.php?579000-Max-s-New-Adventures",
"nominator_user_id": 290774
},
{
"award": "Best Established Writer",
"nominee_user_link": "http://www.serebiiforums.com/member.php?113014-Ysavvryl",
"nominator_user_id": 290774
},
{
"award": "Best New Writer",
"nominee_user_link": "http://www.serebiiforums.com/member.php?309539-RealRaymon",
"nominator_user_id": 290774
},
{
"award": "Most Dedicated Writer",
"nominee_user_link": "http://www.serebiiforums.com/member.php?117752-Matori",
"nominator_user_id": 290774
},
{
"award": "Most Improved Writer",
"nominee_user_link": "http://www.serebiiforums.com/member.php?287596-LadyLady",
"nominator_user_id": 290774
},
{
"award": "Most Dedicated Reviewer",
"nominee_user_link": "http://www.serebiiforums.com/member.php?141463-JX-Valentine",
"comment": "even though she never reviewed mine, I read her reviews to others",
"nominator_user_id": 290774
},
{
"award": "Best Pokémon Chaptered Fic",
"nominee_thread_link": "http://www.serebiiforums.com/showthread.php?585635-Pokemon-Mystery-Dungeon-Domination-and-Liberation",
"comment": "The amount of awesome displayed in this story...I can't...I don't even...No, I cannot express it with language. It's not so much the words he chose, but the plot is so incredible...",
"nominator_user_id": 156899
},
{
"award": "Best Pokémon Chaptered Fic",
"nominee_thread_link": "http://www.serebiiforums.com/showthread.php?562980-Pokemon-Mystery-Dungeon-Overthrown",
"comment": "This story...will make you question your sanity. It pushes the boundaries of a normal PMD fic, then completely tosses those boundaries into the incinerator. Good-bye regulations! It's been nice knowing you!",
"nominator_user_id": 156899
},
{
"award": "Best Non-Pokémon Chaptered Fic",
"nominee_thread_link": "http://www.serebiiforums.com/showthread.php?592256-Au%F0n",
"comment": "I haven't read many fics that aren't PMD (okay, so I haven't read many fics anyways) but this one shows good potential.",
"nominator_user_id": 156899
},
{
"award": "Best Non-Pokémon One-Shot",
"nominee_thread_link": "http://www.serebiiforums.com/showthread.php?562455-Dragonborn-Skyrim-One-Shot",
"comment": "You know, for as good as this one is, it has a shameful number of responses. True, I didn't respond either, but...Shh!",
"nominator_user_id": 156899
},
{
"award": "Best Plot",
"nominee_thread_link": "http://www.serebiiforums.com/showthread.php?562980-Pokemon-Mystery-Dungeon-Overthrown",
"comment": "Honestly, the plot is so detailed and he can bring even the most minor of characters into the twisted limelight. I've grown quite fond of his homicidally insane tale... Besides that, I'm surprised this guy can keep all the coexisting arks and sub arks separate in his head. Because I sure as heck can't.",
"nominator_user_id": 156899
},
{
"award": "Most Original Overall",
"nominee_thread_link": "http://www.serebiiforums.com/showthread.php?585635-Pokemon-Mystery-Dungeon-Domination-and-Liberation",
"comment": "This man combined Pokemon Mystery Dungeon with Pokemon Conquest and he did it seamlessly, I might add. Not only that, but he starts off after the event of PMD Time/Darkness/Sky. I love it. Beautiful!",
"nominator_user_id": 156899
},
{
"award": "Best Writing Style",
"nominee_thread_link": "http://www.serebiiforums.com/showthread.php?562980-Pokemon-Mystery-Dungeon-Overthrown",