-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathfeed.json
4675 lines (4675 loc) · 135 KB
/
feed.json
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
{
"version": 9,
"balance": 3847,
"goal": "Get to Cinnabar",
"badges": [
"boulder",
"cascade",
"thunder",
"rainbow",
"soul",
"marsh"
],
"inventory": [
{
"name": "S.S. Ticket",
"count": 1
},
{
"name": "HM01 Cut",
"count": 1
},
{
"name": "Super Rod",
"count": 1
},
{
"name": "Silph Scope",
"count": 1
},
{
"name": "Lift Key",
"count": 1
},
{
"name": "Helix Fossil",
"count": 1
}
],
"party": [
{
"species": "Gastly",
"name": "Gastly",
"nickname": "Rick Gastly",
"level": 22,
"moves": [
"Lick",
"Confuse Ray",
"Night Shade"
]
},
{
"species": "Pidgeot",
"name": "aaabaaajss",
"nickname": "Bird Jesus",
"level": 59,
"moves": [
"Mirror Move",
"Quick Attack",
"Sand-Attack",
"Whirlwind"
]
},
{
"species": "Zubat",
"name": "ABB-??AAJ",
"nickname": "DashBat",
"level": 18,
"moves": [
"Leech Life",
"Supersonic",
"Bite"
]
},
{
"species": "Lapras",
"name": "AIIIIIIRRR",
"nickname": "Fresh Prince",
"level": 20,
"moves": [
"Mist",
"Growl",
"Surf",
"Strength"
]
},
{
"species": "Venomoth",
"name": "AATTVVV",
"nickname": "ATVenomoth",
"level": 33,
"moves": [
"Disable",
"Poison Poweder",
"Leech Life",
"Stun Spore"
]
},
{
"species": "Drowzee",
"name": "DROWZEE",
"nickname": "The Keeper",
"level": 30,
"moves": [
"Pound",
"Headbutt",
"Disable",
"Confusion"
]
}
],
"updates": [
{
"time": 1393184041,
"title": "<p>[MAP] If we choose to forego using Cut, we have to go through Mt. Moon. <a href=\"http://i.imgur.com/AjIGOYf.png\">Here</a> is a map from /u/aseanman27 on how to do it. <em>2damoon</em></p>\n",
"category": "Strategy",
"description": null,
"updater": "guilka",
"mode": "anarchy"
},
{
"time": 1393183717,
"title": "",
"category": "Commentary",
"description": "<p><strong>[RECAP]</strong> After hours of PC usage (maybe Red is becoming more like his controllers), we are currently left still without Zapdos in the party, but we have Bird Jesus, AIR Jordan, The Keeper, and ATV from the original party. Rick Gastley and Dashbat round out the group. Next objective is to get to Cinnabar Island for our penultimate badge.</p>\n",
"updater": "guilka",
"mode": "anarchy"
},
{
"time": 1393183615,
"title": "",
"category": "Commentary",
"description": "<p><strong>[RECAP]</strong> For any North Americans pulling themselves from bed/waking up, last night/this morning we managed to catch Zapdos with the Master Ball, but the attempt to retrieve it from the PC went horribly awry. We deposited basically our entire party including Bird Jesus and AIR. Multiple pokemon were also released, including Dux and DigRat (RIP in peace).</p>\n",
"updater": "guilka",
"mode": "anarchy"
},
{
"time": 1393183274,
"title": "<p>Red vs wild Geodude. Card Key and Helix Fossil don't work so we use Whirlwind.</p>\n",
"category": "Battle",
"description": null,
"updater": "_2Crazy4Nick",
"mode": "anarchy"
},
{
"time": 1393182616,
"title": "",
"category": "Strategy",
"description": "<p>We have two ways of getting to Cinnabar: either south from Pallet Town (easier surfwise, but a lot of land travel) or below Fuschia City.</p>\n",
"updater": "guilka",
"mode": "anarchy"
},
{
"time": 1393182175,
"title": "<p>Are we trying to level Drowzee? The Keeper is being switched in most wild battles.</p>\n",
"category": "Commentary",
"description": null,
"updater": "guilka",
"mode": "anarchy"
},
{
"time": 1393181752,
"title": "",
"category": "Commentary",
"description": "<p>We're currently wandering about in Rock Tunnel. I think we're caught between moving down to Lavender Town and going back to the PC. Helix guide us.</p>\n",
"updater": "guilka",
"mode": "anarchy"
},
{
"time": 1393181501,
"title": "<p>Red vs wild Geodude. Red runs!</p>\n",
"category": "Battle",
"description": null,
"updater": "_2Crazy4Nick",
"mode": "anarchy"
},
{
"time": 1393181439,
"title": "<p>Drowzee levels up to 30, and his evolution is cancelled again. Can we hold out for psychic?</p>\n",
"category": "Commentary",
"description": null,
"updater": "guilka",
"mode": "anarchy"
},
{
"time": 1393181402,
"title": "<p>We are now in Rock Tunnel.</p>\n",
"category": "Travel",
"description": null,
"updater": "guilka",
"mode": "anarchy"
},
{
"time": 1393180768,
"title": "<p>Sorry about slowness, it's being worked on.</p>\n",
"category": "Meta",
"description": "<p>Just one guy here doing the technical stuff, and sometimes I have to sleep</p>\n",
"updater": "SirCmpwn",
"mode": "anarchy"
},
{
"time": 1393180628,
"title": "<p>Bloody Sunday Killcount: 12</p>\n",
"category": "Commentary",
"description": null,
"updater": "Tyrrell",
"mode": "anarchy"
},
{
"time": 1393180407,
"title": "<p><strong>Back to Anarchy once more!</strong></p>\n",
"category": "Commentary",
"description": null,
"updater": "_2Crazy4Nick",
"mode": "anarchy"
},
{
"time": 1393180344,
"title": "<p>As Anarchy gets closer as we're in the PC, one can only look to Helix for guidance and support</p>\n",
"category": "Commentary",
"description": null,
"updater": "_8BitRemixGuy",
"mode": "democracy"
},
{
"time": 1393180295,
"title": "<p>It's not like we're getting tired of this. Success would be nice though</p>\n",
"category": "Commentary",
"description": null,
"updater": "_2Crazy4Nick",
"mode": "democracy"
},
{
"time": 1393179493,
"title": "<p>Pokemon have been withdrawn. <strong>Current Team: Pidgeot, Gastly, Zubat, Lapras, Venomoth, Drowzee</strong></p>\n",
"category": "Roster",
"description": null,
"updater": "_2Crazy4Nick",
"mode": "democracy"
},
{
"time": 1393179343,
"title": "<p>DashBat has been taken out!</p>\n",
"category": "Roster",
"description": null,
"updater": "_2Crazy4Nick",
"mode": "democracy"
},
{
"time": 1393178910,
"title": "<p>Bird Jesus has been withdrawn. Praise the Helix Fossil!</p>\n",
"category": "Roster",
"description": null,
"updater": "_2Crazy4Nick",
"mode": "democracy"
},
{
"time": 1393178718,
"title": "<p>Burger King has been stored, too. Down to last Pokemon which can't be stored</p>\n",
"category": "Roster",
"description": null,
"updater": "_2Crazy4Nick",
"mode": "democracy"
},
{
"time": 1393178687,
"title": "<p>a the Nidoran and the other Nidoran have been deposited!</p>\n",
"category": "Roster",
"description": null,
"updater": "_2Crazy4Nick",
"mode": "democracy"
},
{
"time": 1393178576,
"title": "<p>Zubat has been stored as well.</p>\n",
"category": "Roster",
"description": null,
"updater": "_2Crazy4Nick",
"mode": "democracy"
},
{
"time": 1393178489,
"title": "<p>Zapdos was deposited. Wow! Much Progress!</p>\n",
"category": "Roster",
"description": null,
"updater": "_2Crazy4Nick",
"mode": "democracy"
},
{
"time": 1393177611,
"title": "<p><strong>Democracy mode!</strong></p>\n",
"category": "Commentary",
"description": null,
"updater": "culex",
"mode": "democracy"
},
{
"time": 1393177160,
"title": "<p>Gastly was withdrawn</p>\n",
"category": "Roster",
"description": null,
"updater": "_2Crazy4Nick",
"mode": "anarchy"
},
{
"time": 1393177144,
"title": "<p>Red beomes aware that he cannot access the Pokémon Storage System through the flower pot</p>\n",
"category": "Commentary",
"description": null,
"updater": "_2Crazy4Nick",
"mode": "anarchy"
},
{
"time": 1393176947,
"title": "<p>Rhyhorn was deposited</p>\n",
"category": "Roster",
"description": "",
"updater": "_2Crazy4Nick",
"mode": "democracy"
},
{
"time": 1393176785,
"title": "<p>Poke Flute, HM03 Surf and HM04 Strength were stored</p>\n",
"category": "Commentary",
"description": null,
"updater": "_2Crazy4Nick",
"mode": "anarchy"
},
{
"time": 1393176523,
"title": "<p>Venonat was withdrawn</p>\n",
"category": "Roster",
"description": null,
"updater": "_2Crazy4Nick",
"mode": "anarchy"
},
{
"time": 1393176411,
"title": "<p>DigRat has been released. We cry in agony</p>\n",
"category": "Roster",
"description": null,
"updater": "_2Crazy4Nick",
"mode": "anarchy"
},
{
"time": 1393176248,
"title": "<p>Nidorino -The Fonz- has been deposited</p>\n",
"category": "Roster",
"description": null,
"updater": "_2Crazy4Nick",
"mode": "anarchy"
},
{
"time": 1393175548,
"title": "<p>Chat user Underwearrainbows wants us to 'GO BACK T O THE PC YOU FLIPPERS'</p>\n",
"category": "Commentary",
"description": null,
"updater": "_2Crazy4Nick",
"mode": "anarchy"
},
{
"time": 1393175418,
"title": "<p><strong>Anarchy mode activate</strong></p>\n",
"category": "Commentary",
"description": null,
"updater": "_2Crazy4Nick",
"mode": "anarchy"
},
{
"time": 1393174877,
"title": "<p>We're informed that taking another Pokemon with us is not possible. Try anyway.</p>\n",
"category": "Commentary",
"description": null,
"updater": "_2Crazy4Nick",
"mode": "democracy"
},
{
"time": 1393174313,
"title": "<p><strong>Democracy mode!</strong></p>\n",
"category": "Commentary",
"description": null,
"updater": "MrSymphony",
"mode": "democracy"
},
{
"time": 1393174260,
"title": "<p>Guess who's back in the Poke Center?</p>\n",
"category": "Travel",
"description": null,
"updater": "_2Crazy4Nick",
"mode": "anarchy"
},
{
"time": 1393173767,
"title": "<p>We left Poke Center once again! Fresh air, Ahh.</p>\n",
"category": "Travel",
"description": null,
"updater": "MrSymphony",
"mode": "anarchy"
},
{
"time": 1393173499,
"title": "<p><strong>We withdrew Nidoran!</strong></p>\n",
"category": "Roster",
"description": null,
"updater": "MrSymphony",
"mode": "anarchy"
},
{
"time": 1393172925,
"title": "<p>Note: Without DUX, there's no cut. That is all.</p>\n",
"category": "Strategy",
"description": null,
"updater": "MrSymphony",
"mode": "anarchy"
},
{
"time": 1393172856,
"title": "<p>Well! We're back from taking our break! We're in the Poke Center again. :) We <em>literally</em> wandered around the grass doing nothing. We're pretty legit!!</p>\n",
"category": "Travel",
"description": null,
"updater": "MrSymphony",
"mode": "anarchy"
},
{
"time": 1393172391,
"title": "<p>Hi there! If you're just joining us now, we've successfully released <strong>11 ELEVEN</strong> Pokemon today! These incldue: 3 Venonats, 1 Exeggcute, 1 Paras, 1 Geodude, 3 NidoranM's and EVERYONE'S FAVORITE! xCabbage and Dux! I'm drowning in tears! :D!</p>\n",
"category": "Commentary",
"description": null,
"updater": "MrSymphony",
"mode": "anarchy"
},
{
"time": 1393172247,
"title": "<p>We are now outside of the Poke Center, attempting to get some fresh air from our gambling addiction.</p>\n",
"category": "Travel",
"description": null,
"updater": "MrSymphony",
"mode": "anarchy"
},
{
"time": 1393172004,
"title": "<p><strong>Withdrew Silph Scope</strong></p>\n",
"category": "Items",
"description": null,
"updater": "MrSymphony",
"mode": "anarchy"
},
{
"time": 1393171996,
"title": "<p><strong>a</strong> has been withdrawn</p>\n",
"category": "Roster",
"description": null,
"updater": "MrSymphony",
"mode": "anarchy"
},
{
"time": 1393171948,
"title": "<p>That is a total of <strong>11 Pokemon</strong> released now! TEARS OF TEARS!</p>\n",
"category": "Commentary",
"description": null,
"updater": "MrSymphony",
"mode": "anarchy"
},
{
"time": 1393171929,
"title": "<p><strong>AAEWWW HAS BEEN RELEASED</strong></p>\n",
"category": "Roster",
"description": null,
"updater": "MrSymphony",
"mode": "anarchy"
},
{
"time": 1393171923,
"title": "<p><strong>ATV HAS BEEN DEPOSITED WITH 'H' (NIDORAN) BEING RELEASED</strong></p>\n",
"category": "Roster",
"description": null,
"updater": "MrSymphony",
"mode": "anarchy"
},
{
"time": 1393171891,
"title": "<p><strong>Silph Scope has been deposited!</strong></p>\n",
"category": "Items",
"description": null,
"updater": "MrSymphony",
"mode": "anarchy"
},
{
"time": 1393171758,
"title": "<p>Democracy is running out of time! It's <<| arrows for Anarchy!!!</p>\n",
"category": "Commentary",
"description": null,
"updater": "MrSymphony",
"mode": "democracy"
},
{
"time": 1393171733,
"title": "<p>Anddd the combo's too long and thus does not work correctly.</p>\n",
"category": "Commentary",
"description": null,
"updater": "MrSymphony",
"mode": "democracy"
},
{
"time": 1393171607,
"title": "<p>The mass population has given rise to the combo: 'b5a5downadown5a4' which, apparently, deposits Zubats!</p>\n",
"category": "Commentary",
"description": null,
"updater": "MrSymphony",
"mode": "democracy"
},
{
"time": 1393171337,
"title": "<p>We've exited the PC due to delay and overshooting 'b'. Anarchy votes are rolling in.</p>\n",
"category": "Commentary",
"description": null,
"updater": "MrSymphony",
"mode": "democracy"
},
{
"time": 1393170811,
"title": "<p>PC's turned on!</p>\n",
"category": "Commentary",
"description": null,
"updater": "MrSymphony",
"mode": "democracy"
},
{
"time": 1393170752,
"title": "<p><strong>DEMOCRACY!!</strong></p>\n",
"category": "Commentary",
"description": null,
"updater": "MrSymphony",
"mode": "democracy"
},
{
"time": 1393170048,
"title": "<p>We are still roaming the Poke Center, unhappy with our Pokemon so still trying to trade them in for something better. [We're addicted to gambling!]</p>\n",
"category": "Commentary",
"description": null,
"updater": "MrSymphony",
"mode": "anarchy"
},
{
"time": 1393169599,
"title": "<p>We are trying to teach Nidorino Surf. The sound of rejection is terrifying.</p>\n",
"category": "Commentary",
"description": null,
"updater": "MrSymphony",
"mode": "anarchy"
},
{
"time": 1393169317,
"title": "<p><strong>WITHDREW ZUBAT</strong></p>\n",
"category": "Roster",
"description": null,
"updater": "MrSymphony",
"mode": "anarchy"
},
{
"time": 1393169286,
"title": "<p><strong>WE ARE NOW IN ANARCHY.</strong></p>\n",
"category": "Commentary",
"description": null,
"updater": "MrSymphony",
"mode": "anarchy"
},
{
"time": 1393169165,
"title": "<p>There's a delay! Vote for the NEXT input (or even the next one after that! Delay's pretty long yo!)</p>\n",
"category": "Strategy",
"description": null,
"updater": "MrSymphony",
"mode": "democracy"
},
{
"time": 1393169060,
"title": "<p>And then we overshot and exited the PC. Anarchy votes are piling in, but we're activating the PC again!</p>\n",
"category": "Commentary",
"description": null,
"updater": "MrSymphony",
"mode": "democracy"
},
{
"time": 1393168983,
"title": "<p><strong>We have deposited Lapras.</strong> Yay for over-shooting while using A!</p>\n",
"category": "Roster",
"description": null,
"updater": "MrSymphony",
"mode": "democracy"
},
{
"time": 1393168756,
"title": "",
"category": "Meta",
"description": "<p>If you receive an image that depicts tags such as <b></b> and such, it is because you are using Light Version. Please use the regular version <a href=\"http://tpp.aninext.tv/\">here</a></p>\n",
"updater": "MrSymphony",
"mode": "democracy"
},
{
"time": 1393168534,
"title": "",
"category": "Meta",
"description": "<p>IT HAS BEEN BROUGHT TO MY ATTENTION THAT THIS UPDATER HAS TROUBLE WITH LARGE TRAFFIC- We are noting that now! Remember, this updater is <strong>for you guys</strong> so feel free to voice your opinions. Thanks!</p>\n",
"updater": "MrSymphony",
"mode": "democracy"
},
{
"time": 1393168343,
"title": "<p>Shout-out + Thank you to /u/Mindez for supplying <a href=\"http://puu.sh/77wwN.png\">this link</a>. It's very helpful!</p>\n",
"category": "Commentary",
"description": null,
"updater": "MrSymphony",
"mode": "democracy"
},
{
"time": 1393168252,
"title": "<p><strong>Withdrew Super Rod.</strong></p>\n",
"category": "Items",
"description": null,
"updater": "MrSymphony",
"mode": "democracy"
},
{
"time": 1393168218,
"title": "<p><strong>Withdraw S. S. Ticket.</strong></p>\n",
"category": "Items",
"description": null,
"updater": "MrSymphony",
"mode": "democracy"
},
{
"time": 1393168201,
"title": "<p><strong>WE WITHDREW HELIX FOSSIL!</strong> Lord be praised and shine your rock upon my bodeth.</p>\n",
"category": "Items",
"description": null,
"updater": "MrSymphony",
"mode": "democracy"
},
{
"time": 1393167994,
"title": "<p><strong>ZAPDOS HAS BEEN WITHDRAWN!!!</strong></p>\n",
"category": "Roster",
"description": null,
"updater": "MrSymphony",
"mode": "democracy"
},
{
"time": 1393167912,
"title": "<p><strong>AEWWWWVV (Rhyhorn) has been Withdrawn!</strong></p>\n",
"category": "Roster",
"description": null,
"updater": "MrSymphony",
"mode": "democracy"
},
{
"time": 1393167690,
"title": "<p>And we've overshot <em>again</em> and missed AA-j (Zapdos). We're now hovering over Zubat.</p>\n",
"category": "Commentary",
"description": null,
"updater": "MrSymphony",
"mode": "democracy"
},
{
"time": 1393167525,
"title": "<p>We've just exited the PC by over-shooting input 'b'. Democracy, you're running out of time! Anarchy votes are coming in.</p>\n",
"category": "Commentary",
"description": null,
"updater": "MrSymphony",
"mode": "democracy"
},
{
"time": 1393167304,
"title": "<p><strong>AAAAAAAAAA has been withdrawn!</strong> That's a Nidorino.</p>\n",
"category": "Roster",
"description": null,
"updater": "MrSymphony",
"mode": "democracy"
},
{
"time": 1393167241,
"title": "<p>Oh god, we're overshooting BAD. Instead of Zapdos, we kept doing donw onto 'AAAAAAAAA'!</p>\n",
"category": "Commentary",
"description": null,
"updater": "MrSymphony",
"mode": "democracy"
},
{
"time": 1393167159,
"title": "<p>We have 3 pokemon slots available. FYI!</p>\n",
"category": "Strategy",
"description": null,
"updater": "MrSymphony",
"mode": "democracy"
},
{
"time": 1393166923,
"title": "<p>We have reached the PC with Democracy! Remember, time is limited. Anarchy will most likely prevail as time goes on. Tick <em>tock</em> Tick <em>tock</em>!</p>\n",
"category": "Commentary",
"description": null,
"updater": "MrSymphony",
"mode": "democracy"
},
{
"time": 1393166767,
"title": "<p><strong>We are in Democracy now!</strong></p>\n",
"category": "Commentary",
"description": null,
"updater": "MrSymphony",
"mode": "democracy"
},
{
"time": 1393166684,
"title": "<p>Let the bodies hit the floor... Let the bodies be released... :C</p>\n",
"category": "Commentary",
"description": null,
"updater": "MrSymphony",
"mode": "anarchy"
},
{
"time": 1393166536,
"title": "<p>Hi! If you're joining us now, here's a friendly reminder that we just released <strong>9</strong> Pokemon! Which are: 3 Venonats, 1 Paras, 1 Exeggcute, 1 NidoranM, 1 DUX (CRY), 1 xCabbage (TEARS0, and 1 Geodude (eh)! Shed those tears! :D!</p>\n",
"category": "Commentary",
"description": null,
"updater": "MrSymphony",
"mode": "anarchy"
},
{
"time": 1393166298,
"title": "<p><strong>BIRD JESUS AND DASH BAT DEPOSITED</strong></p>\n",
"category": "Roster",
"description": null,
"updater": "MrSymphony",
"mode": "anarchy"
},
{
"time": 1393166257,
"title": "<p><strong>Geodude was released as well.</strong></p>\n",
"category": "Roster",
"description": null,
"updater": "MrSymphony",
"mode": "anarchy"
},
{
"time": 1393166207,
"title": "<p><strong>DUX HAS BEEN RELEASED OUT. BYE DUX</strong></p>\n",
"category": "Roster",
"description": null,
"updater": "MrSymphony",
"mode": "anarchy"
},
{
"time": 1393165978,
"title": "<p><strong>Gastly has been deposited!</strong></p>\n",
"category": "Roster",
"description": null,
"updater": "MrSymphony",
"mode": "anarchy"
},
{
"time": 1393165932,
"title": "<p><strong>DIG RAT HAS BEEN DEPOSITED. DROWZEE HAS BEEN WITHDRAWN.</strong></p>\n",
"category": "Roster",
"description": null,
"updater": "MrSymphony",
"mode": "anarchy"
},
{
"time": 1393165858,
"title": "<p><strong>Lift Key, Card Key were obtained!</strong></p>\n",
"category": "Items",
"description": null,
"updater": "MrSymphony",
"mode": "anarchy"
},
{
"time": 1393165849,
"title": "<p><strong>Burger King was DEPOSITED, ATV Obtained!</strong></p>\n",
"category": "Roster",
"description": null,
"updater": "MrSymphony",
"mode": "anarchy"
},
{
"time": 1393165601,
"title": "<p><strong><a href=\"http://puu.sh/77sX1.png\">Here</a></strong> is a link to the current Pokemon. Please note that xCabbage has been released. Tears were shed.</p>\n",
"category": "Roster",
"description": null,
"updater": "MrSymphony",
"mode": "anarchy"
},
{
"time": 1393165506,
"title": "<p>We are <em>still</em> in the Poke Center. We're still thirsty for blood! Nomnomnom.</p>\n",
"category": "Travel",
"description": null,
"updater": "MrSymphony",
"mode": "anarchy"
},
{
"time": 1393164658,
"title": "<p>Fun fact! Up to now, we have released a total of <strong>7</strong> Pokemon! They are: xCabbage, a (Venonat), AIA (Exeggcute), AAA (Paras), B-!) (Venonat), Venonat (Venonat), and NidoranM(NidoranM). Thank you for your sadness!</p>\n",
"category": "Commentary",
"description": null,
"updater": "MrSymphony",
"mode": "anarchy"
},
{
"time": 1393164384,
"title": "<p><strong>xCabbage HAS BEEN RELEASED FOREVER. HE'S GONE FOREVER</strong></p>\n",
"category": "Roster",
"description": null,
"updater": "MrSymphony",
"mode": "anarchy"
},
{
"time": 1393164338,
"title": "<p><strong>HM03 GET, POKE FLUTE GET, HM04 GET! (Get meaning Withdrawn)</strong></p>\n",
"category": "Items",
"description": null,
"updater": "MrSymphony",
"mode": "anarchy"
},
{
"time": 1393164307,
"title": "<p>We left then re-entered the Poke Center. Oh boy...</p>\n",
"category": "Travel",
"description": null,
"updater": "MrSymphony",
"mode": "anarchy"
},
{
"time": 1393163728,
"title": "<p>Apologies, we HAVE Silph Scope.</p>\n",
"category": "Items",
"description": null,
"updater": "MrSymphony",
"mode": "anarchy"
},
{
"time": 1393163369,
"title": "<p><strong>WE GOT BIRD JESUS BACK!!</strong></p>\n",
"category": "Roster",
"description": null,
"updater": "MrSymphony",
"mode": "anarchy"
},
{
"time": 1393163356,
"title": "<p><strong>Silph Scope, HM03 have been withdrawn! HM04 has been deposited along with LIFT and CARD Key and HELIX FOOSSIL(OMFG) AND SS TICKET AND SUPER ROD (WTF) AND HM01 (OMG) AND SILPH SCOPE WE LOST EVERYTHING</strong></p>\n",
"category": "Items",
"description": null,
"updater": "MrSymphony",
"mode": "anarchy"
},
{
"time": 1393163322,
"title": "<p><strong>LAPRAS HAS BEEN WITHDRAWN</strong></p>\n",
"category": "Roster",
"description": null,
"updater": "MrSymphony",
"mode": "anarchy"
},
{
"time": 1393163311,
"title": "<p><strong>ABB-??AAJ AND GASTLY HAVE BEEN WITHDRAWN</strong></p>\n",
"category": "Roster",
"description": null,
"updater": "MrSymphony",
"mode": "anarchy"
},
{
"time": 1393163089,
"title": "<p><strong>Nidoran has been deposited</strong></p>\n",
"category": "Roster",
"description": null,
"updater": "MrSymphony",
"mode": "anarchy"
},
{
"time": 1393163018,
"title": "<p>Our current pokemon are BBKBBBKCB, DigRat and Nidoran! Hi BigDig.</p>\n",
"category": "Commentary",
"description": null,
"updater": "MrSymphony",
"mode": "anarchy"
},
{
"time": 1393162975,
"title": "<p><strong>We have deposited Zapdos. Riot.</strong></p>\n",
"category": "Roster",
"description": null,
"updater": "MrSymphony",
"mode": "anarchy"
},
{
"time": 1393162931,
"title": "<p><strong>a have been deposited along with H. lol these names.</strong></p>\n",
"category": "Roster",
"description": null,
"updater": "MrSymphony",
"mode": "anarchy"
},
{
"time": 1393162834,
"title": "<p><strong>BBKBBBKBC something has been withdrawn</strong></p>\n",
"category": "Roster",
"description": null,
"updater": "MrSymphony",
"mode": "anarchy"
},
{
"time": 1393162783,
"title": "<p><strong>AAEWW has been withdrawn</strong></p>\n",
"category": "Roster",
"description": null,
"updater": "MrSymphony",
"mode": "anarchy"
},
{
"time": 1393162765,
"title": "<p><strong>Silph Scope, Poke Flute have been deposited</strong></p>\n",
"category": "Items",
"description": null,
"updater": "MrSymphony",
"mode": "anarchy"
},
{
"time": 1393162707,
"title": "<p><strong>Nidoran has been released as well!</strong></p>\n",
"category": "Roster",
"description": null,
"updater": "MrSymphony",
"mode": "anarchy"
},
{
"time": 1393162694,
"title": "<p><strong>ZUBAT, AAAAAAA, HAVE BEEN DEPOSITED WITH NIDORAN WITHDRAWN AND VENONAT HAS BEEN RELEASED.</strong></p>\n",
"category": "Roster",
"description": null,
"updater": "MrSymphony",
"mode": "anarchy"
},
{
"time": 1393162171,
"title": "<p>AAA was Paras. Bye Paras!</p>\n",
"category": "Commentary",
"description": null,
"updater": "MrSymphony",
"mode": "anarchy"
},
{
"time": 1393162098,
"title": "<p><strong>SS TICKET, HM01, AND SUPER ROD HAVE BEEN WITHDRAWN.</strong></p>\n",
"category": "Items",
"description": null,
"updater": "MrSymphony",
"mode": "anarchy"
},
{
"time": 1393162080,
"title": "<p><strong>AAA HAS BEEN RELEASED</strong></p>\n",
"category": "Roster",
"description": null,
"updater": "MrSymphony",
"mode": "anarchy"
},
{
"time": 1393162014,
"title": "<p>AIA was our Exeggcute</p>\n",
"category": "Commentary",
"description": null,
"updater": "MrSymphony",
"mode": "anarchy"
},
{
"time": 1393161888,
"title": "<p><strong>AIA HAS BEEN RELEASED</strong></p>\n",
"category": "Roster",
"description": null,
"updater": "MrSymphony",
"mode": "anarchy"
},
{
"time": 1393161631,
"title": "<p>In case you are wondering, for those who are joining us now, we now have none of our original Pokemon in our team!! Yaaayyy~.... :C</p>\n",
"category": "Commentary",
"description": null,
"updater": "MrSymphony",
"mode": "anarchy"
},
{
"time": 1393161568,
"title": "<p><strong>WITHDRAWN HELIX FOSSIL!</strong></p>\n",
"category": "Items",
"description": null,
"updater": "MrSymphony",
"mode": "anarchy"
},
{