forked from rat-nick/aniRec
-
Notifications
You must be signed in to change notification settings - Fork 0
/
review_sample.html
3860 lines (3685 loc) · 457 KB
/
review_sample.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html lang="en" class="appearance-none">
<head>
<link rel="preconnect" href="//fonts.gstatic.com/" crossorigin="anonymous" />
<link rel="preconnect" href="//fonts.googleapis.com/" crossorigin="anonymous" />
<link rel="preconnect" href="//tags-cdn.deployads.com/" crossorigin="anonymous" />
<link rel="preconnect" href="//www.googletagservices.com/" crossorigin="anonymous" />
<link rel="preconnect" href="//www.googletagmanager.com/" crossorigin="anonymous"/>
<link rel="preconnect" href="//apis.google.com/" crossorigin="anonymous"/>
<link rel="preconnect" href="//pixel-sync.sitescout.com/" crossorigin="anonymous"/>
<link rel="preconnect" href="//pixel.tapad.com/" crossorigin="anonymous"/>
<link rel="preconnect" href="//c.deployads.com/" crossorigin="anonymous"/>
<link rel="preconnect" href="//tpc.googlesyndication.com/" crossorigin="anonymous"/>
<link rel="preconnect" href="//googleads.g.doubleclick.net/" crossorigin="anonymous"/>
<link rel="preconnect" href="//securepubads.g.doubleclick.net/" crossorigin="anonymous"/>
<link rel="preconnect" href="https://cdn.myanimelist.net" crossorigin="anonymous"/>
<title>Anime Reviews - MyAnimeList.net
</title>
<meta name="description" content="Looking for anime reviews? Browse latest reviews, or search our extensive database for a specific title. With thousands of titles, MyAnimeList is the largest online manga and anime community and database in the world!" />
<meta name="keywords" content="anime, myanimelist, anime news, manga" />
<link rel="canonical" href="https://myanimelist.net/reviews.php?t=anime&filter_check=&filter_hide=&preliminary=on&spoiler=off" />
<meta property="og:locale" content="en_US"><meta property="fb:app_id" content="360769957454434"><meta property="og:site_name" content="MyAnimeList.net"><meta name="twitter:card" content="summary"><meta name="twitter:site" content="@myanimelist"><meta property="og:title" content="Anime Reviews - MyAnimeList.net "><meta property="og:image" content="https://cdn.myanimelist.net/img/sp/icon/apple-touch-icon-256.png"><meta name="twitter:image:src" content="https://cdn.myanimelist.net/img/sp/icon/apple-touch-icon-256.png"><meta property="og:url" content="https://myanimelist.net/reviews.php?t=anime&filter_check=&filter_hide=&preliminary=on&spoiler=off"><meta property="og:description" content="Looking for anime reviews? Browse latest reviews, or search our extensive database for a specific title. With thousands of titles, MyAnimeList is the largest online manga and anime community and database in the world!">
<meta name="referrer" content="default"><link rel="manifest" href="/manifest.json">
<meta name='csrf_token' content='e8ce8b570fdce87e3e38fbec25fcce90bf95b6af'>
<meta name="fo-verify" content="1e927243-8e02-48e3-b098-a7b78c5b4e36"><meta name="viewport" content="initial-scale=1" /><link rel="preload" as="style" href="https://cdn.myanimelist.net/static/assets/css/pc/style-6890dd4644.css" />
<link rel="preload" as="style" href="https://cdn.myanimelist.net/static/assets/css/pc/dark-3ad480c907.css" />
<link rel="preload" as="script" href="https://cdn.myanimelist.net/static/assets/js/pc/header-503d595871.js" />
<link rel="preload" as="script" href="https://cdn.myanimelist.net/static/assets/js/pc/all-a766a3c989.js" />
<link rel="stylesheet" type="text/css" href="https://cdn.myanimelist.net/static/assets/css/pc/style-6890dd4644.css" />
<link rel="stylesheet" type="text/css" href="https://cdn.myanimelist.net/static/assets/css/pc/dark-3ad480c907.css" />
<script type="text/javascript" src="https://cdn.myanimelist.net/static/assets/js/pc/header-503d595871.js"></script>
<script type="text/javascript" src="https://cdn.myanimelist.net/static/assets/js/pc/all-a766a3c989.js" id="alljs" data-params='{"origin_url":"https:\/\/myanimelist.net"}' async="async"></script>
<link rel="search" type="application/opensearchdescription+xml" href="https://myanimelist.net/plugins/myanimelist.xml" title="MyAnimeList" />
<link rel="shortcut icon" href="https://cdn.myanimelist.net/images/favicon.ico" />
<meta name='recaptcha_site_key' content='6Ld_1aIZAAAAAF6bNdR67ICKIaeXLKlbhE7t2Qz4'>
<script>
window.GRECAPTCHA_SITE_KEY = '6Ld_1aIZAAAAAF6bNdR67ICKIaeXLKlbhE7t2Qz4';
</script>
<script src='https://www.google.com/recaptcha/api.js?render=6Ld_1aIZAAAAAF6bNdR67ICKIaeXLKlbhE7t2Qz4' async defer></script>
<link href="https://fonts.googleapis.com/css?family=Roboto:400,700&display=swap" rel="stylesheet">
<script async src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js?client=ca-pub-1473193330168238" crossorigin="anonymous"></script>
<script type="text/javascript" src="https://cdn.myanimelist.net/js/quantcast_choice.js?v=1682770180"></script>
<script type="text/javascript" src="https://cdn.myanimelist.net/js/cmp.js?v=1682770180"></script>
<script defer src="https://cdn.unblockia.com/h.js"></script><script>
var clientDarkMode = window.matchMedia("(prefers-color-scheme:dark)").matches;
let darkMode = false
if (clientDarkMode) {
if (!$('html').hasClass("appearance-light")) { // SystemSetting = Dark && MAL UserSettings != Light
darkMode = true
}
} else if ($('html').hasClass("appearance-dark")) { // MAL UserSettings = Dark
darkMode = true
}
if (darkMode) {
$('html').addClass("dark-mode");
}
$(document).ready(function() {
if (darkMode) {
if($('.js-color-pc-constant').length){$('.js-color-pc-constant').addClass("color-pc-constant");}
}
});
</script>
</head>
<body onload=" " class="page-common" data-country-code="RS" >
<div id="myanimelist">
<script type='text/javascript'>
window.MAL.SkinAd.prepareForSkin('');
</script>
<div id="ad-skin-bg-left" class="ad-skin-side-outer ad-skin-side-bg bg-left">
<div id="ad-skin-left" class="ad-skin-side left" style="display: none;">
<div id="ad-skin-left-absolute-block">
<div id="ad-skin-left-fixed-block"></div>
</div>
</div>
</div>
<div class="wrapper"><div id="headerSmall"><a href="/" class="link-mal-logo">MyAnimeList.net</a>
<script>
var trackOutboundLink = function(url) {
ga('send', 'event', 'outbound', 'click', url, {
'transport': 'beacon',
'hitCallback': function(){return true;}
});
}
</script><div class="banner-header-anime-straming header-mini-banner" style="right:480px;">
<a href="https://mxj.myanimelist.net/" onclick="trackOutboundLink('https://mxj.myanimelist.net/')">
<img src="/c/img/images/event/20210527_MALxJAPAN_MiniBanner/500x72_miniBanner_B.png" width="250" height="36" alt="MAL x JAPAN" title="MAL x JAPAN">
</a>
</div>
<div id="header-menu" ><div class="header-menu-login"><a class="btn-mal-service ga-click ga-impression" data-ga-click-type="hide-ads" data-ga-impression-type="hide-ads"
href="https://myanimelist.net/membership?_location=mal_h_u" onClick="ga_mal_banner()">Hide Ads</a><a class="btn-login" href="https://myanimelist.net/login.php?from=%2Freviews.php%3Ft%3Danime%26filter_check%3D%26filter_hide%3D%26preliminary%3Don%26spoiler%3Doff%26p%3D1" id="malLogin" onClick="ga_notlogin()">Login</a><a class="btn-signup" href="https://myanimelist.net/register.php?from=%2Freviews.php%3Ft%3Danime%26filter_check%3D%26filter_hide%3D%26preliminary%3Don%26spoiler%3Doff%26p%3D1" onClick="ga_registration()">Sign Up</a></div></div></div> <div id="menu" class="">
<div id="menu_right"><script type="text/x-template" id="incremental-result-item-anime"><div class="list anime" :class="{'focus': focus}"><a :href="url" class="clearfix"><div class="on" v-if="focus"><span class="image" :style="{'background-image': 'url(' + item.image_url + ')'}"></span><div class="info anime"><div class="name">${ item.name } <span class="media-type">(${ item.payload.media_type })</span></div><div class="extra-info">Aired: ${ item.payload.aired }<br>Score: ${ item.payload.score }<br>Status: ${ item.payload.status }</div></div></div><div class="off" v-if="!focus"><span class="image" :style="{'background-image': 'url(' + item.thumbnail_url + ')'}"></span><div class="info anime"><div class="name">${ item.name }</div><div class="media-type">(${ mediaTypeWithStartYear })</div></div></div></a></div></script><script type="text/x-template" id="incremental-result-item-manga"><div class="list manga" :class="{'focus': focus}"><a :href="url" class="clearfix"><div class="on" v-if="focus"><span class="image" :style="{'background-image': 'url(' + item.image_url + ')'}"></span><div class="info manga"><div class="name">${ item.name } <span class="media-type">(${ item.payload.media_type })</span></div><div class="extra-info">Published: ${ item.payload.published }<br>Score: ${ item.payload.score }<br>Status: ${ item.payload.status }</div></div></div><div class="off" v-if="!focus"><span class="image" :style="{'background-image': 'url(' + item.thumbnail_url + ')'}"></span><div class="info manga"><div class="name">${ item.name }</div><div class="media-type">(${ mediaTypeWithStartYear })</div></div></div></a></div></script><script type="text/x-template" id="incremental-result-item-character"><div class="list character" :class="{'focus': focus}"><a :href="url" class="clearfix"><div class="on" v-if="focus"><span class="image" :style="{'background-image': 'url(' + item.image_url + ')'}"></span><div class="info character"><div class="name" v-html="item.name"></div><div class="extra-info"><ul class="related-works"><li v-for="work in item.payload.related_works" class="fs-i">- ${ work }</li></ul>Favorites: ${ item.payload.favorites }</div></div></div><div class="off" v-if="!focus"><span class="image" :style="{'background-image': 'url(' + item.thumbnail_url + ')'}"></span><div class="info character"><div class="name" v-html="item.name"></div></div></div></a></div></script><script type="text/x-template" id="incremental-result-item-person"><div class="list person" :class="{'focus': focus}"><a :href="url" class="clearfix"><div class="on" v-if="focus"><span class="image" :style="{'background-image': 'url(' + item.image_url + ')'}"></span><div class="info person"><div class="name">${ item.name }</div><div class="extra-info"><span v-if="item.payload.alternative_name">${ item.payload.alternative_name }<br></span>Birthday: ${ item.payload.birthday }<br>Favorites: ${ item.payload.favorites }</div></div></div><div class="off" v-if="!focus"><span class="image" :style="{'background-image': 'url(' + item.thumbnail_url + ')'}"></span><div class="info person"><div class="name">${ item.name }</div></div></div></a></div></script><script type="text/x-template" id="incremental-result-item-company"><div class="list company" :class="{'focus': focus}"><a :href="url" class="clearfix"><div class="on" v-if="focus"><span class="image" :style="{'background-image': 'url(' + item.image_url + ')'}"></span><div class="info company"><div class="name">${ item.name }</div><div class="extra-info"><span v-if="item.payload.japanese">(${ item.payload.japanese })<br></span>
Anime titles: ${ item.payload.num_animes.toLocaleString() }<br>
Favorites: ${item.payload.favorites.toLocaleString()}
</div></div></div><div class="off" v-if="!focus"><span class="image" :style="{'background-image': 'url(' + item.thumbnail_url + ')'}"></span><div class="info company"><div class="name">${ item.name }</div></div></div></a></div></script><script type="text/x-template" id="incremental-result-item-store"><div class="list store" :class="{'focus': focus}"><a :href="url" class="clearfix"><div class="on" v-if="focus"><span class="image" :style="{'background-image': 'url(' + item.image_url + ')'}"></span><div class="info store"></div></div><div class="off" v-if="!focus"><span class="image" :style="{'background-image': 'url(' + item.thumbnail_url + ')'}"></span><div class="info store"></div></div></a></div></script><script type="text/x-template" id="incremental-result-item-club"><div class="list club" :class="{'focus': focus}"><a :href="url" class="clearfix"><div class="on" v-if="focus"><span class="image" :style="{'background-image': 'url(' + item.image_url + ')'}"></span><div class="info club"><div class="name">${ item.name }</div><div class="extra-info">Members: ${ item.payload.members }<br>Category: ${ item.payload.category }<br>Created by: ${ item.payload.created_by }</div></div></div><div class="off" v-if="!focus"><span class="image" :style="{'background-image': 'url(' + item.thumbnail_url + ')'}"></span><div class="info club"><div class="name">${ item.name }</div></div></div></a></div></script><script type="text/x-template" id="incremental-result-item-user"><div class="list user" :class="{'focus': focus}"><a :href="url" class="clearfix"><div class="on" v-if="focus"><span class="image" :style="{'background-image': 'url(' + item.image_url + ')'}"></span><div class="info user"><div class="name">${ item.name }</div><div class="extra-info"><span v-if="item.payload.authority">${ item.payload.authority }<br></span>Joined: ${ item.payload.joined }</div></div></div><div class="off" v-if="!focus"><span class="image" :style="{'background-image': 'url(' + item.thumbnail_url + ')'}"></span><div class="info user"><div class="name">${ item.name }</div></div></div></a></div></script><script type="text/x-template" id="incremental-result-item-news"><div class="list news" :class="{'focus': focus}"><a :href="url" class="clearfix"><div class="on" v-if="focus"><span class="image" :style="{'background-image': 'url(' + item.image_url + ')'}"></span><div class="info news"><div class="name">${ item.name }</div><div class="extra-info">${ item.payload.date }</div></div></div><div class="off" v-if="!focus"><span class="image" :style="{'background-image': 'url(' + item.thumbnail_url + ')'}"></span><div class="info news"><div class="name">${ item.name }</div><div class="media-type">${ item.payload.date }</div></div></div></a></div></script><script type="text/x-template" id="incremental-result-item-featured"><div class="list featured" :class="{'focus': focus}"><a :href="url" class="clearfix"><div class="on" v-if="focus"><span class="image" :style="{'background-image': 'url(' + item.image_url + ')'}"></span><div class="info featured"><div class="name">${ item.name }</div><div class="extra-info">${ item.payload.date }</div></div></div><div class="off" v-if="!focus"><span class="image" :style="{'background-image': 'url(' + item.thumbnail_url + ')'}"></span><div class="info featured"><div class="name">${ item.name }</div><div class="media-type">${ item.payload.date }</div></div></div></a></div></script><script type="text/x-template" id="incremental-result-item-forum"><div class="list forum" :class="{'focus': focus}"><a :href="url" class="clearfix"><div class="on" v-if="focus"><span class="image" :style="{'background-image': 'url(' + item.image_url + ')'}"></span><div class="info forum"><div class="name"><span v-show="item.payload.work_title">${ item.payload.work_title}
<i class="fa-solid fa-caret-right"></i></span> ${ item.name }</div><div class="extra-info">${ item.payload.date }<br><span>in ${ item.payload.category }</span></div></div></div><div class="off" v-if="!focus"><span class="image" :style="{'background-image': 'url(' + item.thumbnail_url + ')'}"></span><div class="info forum"><div class="name"><span v-show="item.payload.work_title">${ item.payload.work_title}
<i class="fa-solid fa-caret-right"></i></span> ${ item.name }</div><div class="media-type">${ item.payload.date }</div></div></div></a></div></script><script type="text/x-template" id="incremental-result-item-separator"><div class="list separator"><div class="separator"><span v-show="item.name == 'anime'">Anime</span><span v-show="item.name == 'manga'">Manga</span><span v-show="item.name == 'character'">Characters</span><span v-show="item.name == 'person'">People</span><span v-show="item.name == 'company'">Companies</span></div></div></script><div id="top-search-bar" class="js-color-pc-constant"><form id="searchBar" method="get" class="searchBar" @submit.prevent="jump()"><div class="form-select-outer fl-l"><select name="type" id="topSearchValue" class="inputtext" v-model="type"><option value="all">All</option><option value="anime">Anime</option><option value="manga">Manga</option><option value="character">Characters</option><option value="person">People</option><option value="company">Companies</option><option value="store">Manga Store</option><option value="news">News</option><option value="featured">Featured Articles</option><option value="forum">Forum</option><option value="club">Clubs</option><option value="user">Users</option></select></div><input v-model="keyword" id="topSearchText" type="text"
name="keyword" class="inputtext fl-l" placeholder="Search Anime, Manga, and more..."
size="30" autocomplete="off"
@keydown.up.prevent="moveSelection(-1)" @keydown.down.prevent="moveSelection(1)"
@focus="isFocused = true" @blur="isFocused = false"><button id="topSearchButon" class="fl-l" :class="{'notActive': (keyword.length < 3)}" type="submit"><i class="fa-solid fa-magnifying-glass"></i></button></form><div id="topSearchResultList" class="incrementalSearchResultList" :style="{display: (showResult ? 'block' : 'none')}" @mousedown.prevent=""><div v-for="(item, i) in items" @mouseover="selection=i"><component :is="resolveComponent(item)" :item="item" :focus="selection == i" :url="generateItemPageUrl(item)"></component></div><div class="list list-bottom" :class="{'focus': selection == -1}" @mouseover="selection = -1"
:style="{display: (showViewAllLink ? 'block' : 'none')}"><a :href="resultPageUrl">
View all results for <span class="fw-b">${ keyword }</span><i v-show="isRequesting" class="fa-solid fa-spinner fa-spin ml4"></i></a></div></div></div></div><div id="menu_left">
<ul id="nav" class="js-color-pc-constant">
<li class="small"><a href="#" class="non-link">Anime</a>
<ul class="x-wider">
<li><a href="https://myanimelist.net/anime.php?_location=mal_h_m">Anime Search</a></li>
<li><a href="https://myanimelist.net/topanime.php?_location=mal_h_m">Top Anime</a></li>
<li><a href="https://myanimelist.net/anime/season?_location=mal_h_m">Seasonal Anime</a></li>
<li><a href="https://myanimelist.net/watch/episode?_location=mal_h_m_a">Videos</a></li>
<li><a href="https://myanimelist.net/reviews.php?t=anime&_location=mal_h_m">Reviews</a></li>
<li><a href="https://myanimelist.net/recommendations.php?s=recentrecs&t=anime&_location=mal_h_m">Recommendations</a></li>
<li><a href="https://myanimelist.net/forum?topicid=2067484&_location=mal_h_m">2023 Challenge</a></li><li><a href="https://fal.myanimelist.net/?utm_source=MAL&utm_medium=headermenu&utm_campaign=fal&utm_content=falhome&_location=mal_h_m">Fantasy Anime League</a></li></ul>
</li>
<li class="small"><a href="#" class="non-link">Manga</a>
<ul class="x-wider">
<li><a href="https://myanimelist.net/manga.php?_location=mal_h_m">Manga Search</a></li>
<li><a href="https://myanimelist.net/topmanga.php?_location=mal_h_m">Top Manga</a></li>
<li><a href="https://myanimelist.net/store?_location=mal_h_m">Manga Store</a></li>
<li><a href="https://myanimelist.net/reviews.php?t=manga&_location=mal_h_m">Reviews</a></li>
<li><a href="https://myanimelist.net/recommendations.php?s=recentrecs&t=manga&_location=mal_h_m">Recommendations</a></li>
<li><a href="https://myanimelist.net/forum?topicid=2070198&_location=mal_h_m">2023 Challenge</a></li>
</ul>
</li>
<li><a href="#" class="non-link">Community</a>
<ul>
<li><a href="https://myanimelist.net/stacks?_location=mal_h_m">Interest Stacks</a></li>
<li><a href="https://myanimelist.net/forum/?_location=mal_h_m">Forums</a></li>
<li><a href="https://myanimelist.net/clubs.php?_location=mal_h_m">Clubs</a></li>
<li><a href="https://myanimelist.net/blog.php?_location=mal_h_m">Blogs</a></li>
<li><a href="https://myanimelist.net/users.php?_location=mal_h_m">Users</a></li>
</ul>
</li>
<li class="small2"><a href="#" class="non-link">Industry</a>
<ul class="wider">
<li><a href="https://myanimelist.net/news?_location=mal_h_m">News</a></li>
<li><a href="https://myanimelist.net/featured?_location=mal_h_m">Featured Articles</a></li>
<li><a href="https://myanimelist.net/people.php?_location=mal_h_m">People</a></li>
<li><a href="https://myanimelist.net/character.php?_location=mal_h_m">Characters</a></li>
<li><a href="https://myanimelist.net/company?_location=mal_h_m">Companies</a></li>
<li><a href="https://mxj.myanimelist.net/?_location=mal_h_m">MAL×Japan</a></li>
</ul>
</li>
<li class="small"><a href="#" class="non-link">Watch</a>
<ul class="wider">
<li><a href="https://myanimelist.net/watch/episode?_location=mal_h_m">Episode Videos</a></li>
<li><a href="https://myanimelist.net/watch/promotion?_location=mal_h_m">Anime Trailers</a></li></ul>
</li>
<li class="smaller"><a href="#" class="non-link">Read</a>
<ul class="wider">
<li><a href="https://myanimelist.net/store?_location=mal_h_m">Manga Store</a></li>
</ul>
</li>
<li class="smaller"><a href="#" class="non-link">Help</a>
<ul class="wide">
<li><a href="https://myanimelist.net/about.php?_location=mal_h_m">About</a></li>
<li><a href="https://myanimelist.net/about.php?go=support&_location=mal_h_m">Support</a></li>
<li><a href="https://myanimelist.net/advertising?_location=mal_h_m">Advertising</a></li>
<li><a href="https://myanimelist.net/forum/?topicid=515949&_location=mal_h_m">FAQ</a></li>
<li><a href="https://myanimelist.net/modules.php?go=report&_location=mal_h_m">Report</a></li>
<li><a href="https://myanimelist.net/staff?_location=mal_h_m">Staff</a></li>
<li><a href="https://myanimelist.net/membership?_location=mal_h_m">MAL Supporter</a></li>
</ul>
</li>
</ul>
</div> </div><div id="contentWrapper"><div><a href="/myreviews.php?go=write" class="header-right ga-click" data-ga-click-type="review-anime-write-review"><i class="fa-solid fa-square-plus mr4"></i>Write Review</a><h1 class="h1">Anime Reviews</h1></div><div id="content">
<div class="breadcrumb " itemscope itemtype="http://schema.org/BreadcrumbList"><div class="di-ib" itemprop="itemListElement" itemscope itemtype="http://schema.org/ListItem"><a href="https://myanimelist.net/" itemprop="item"><span itemprop="name">
Top
</span></a><meta itemprop="position" content="1"></div> > <div class="di-ib" itemprop="itemListElement" itemscope itemtype="http://schema.org/ListItem"><a href="https://myanimelist.net/anime.php" itemprop="item"><span itemprop="name">
Anime
</span></a><meta itemprop="position" content="2"></div> > <div class="di-ib" itemprop="itemListElement" itemscope itemtype="http://schema.org/ListItem"><a href="https://myanimelist.net/reviews.php?t=anime&filter_check=&filter_hide=&preliminary=on&spoiler=off&p=1" itemprop="item"><span itemprop="name">
Anime Reviews
</span></a><meta itemprop="position" content="3"></div></div>
<div id="horiznav_nav">
<ul style="margin-right: 0; padding-right: 0;">
<li><a class="horiznav_active" href="?t=anime">Anime Reviews</a></li>
<li><a href="?t=manga">Manga Reviews</a></li>
</ul><div style="float:right;"><span class="ml8" style="color:#888;"><i class="fa-regular fa-angle-left"></i> Prev</span><a class="ml8 ga-click" data-ga-click-type="review-next" href="https://myanimelist.net/reviews.php?t=anime&filter_check=&filter_hide=&preliminary=on&spoiler=off&p=2">Next <i class="fa-regular fa-angle-right"></i></a></div></div>
<div class="reviews-horiznav-nav-sort-block js-reviews-horiznav-nav-sort-block mb4 pb8">
<span class="btn-show-filter js-btn-show-filter mr12">Filter</span>
<div class="review-filter-block js-review-filter-block">
<span class="fl-r btn-close js-btn-close"><i class="fa-solid fa-times"></i></span>
<ul class="filter-list">
Click once to include <span class="selected-icon"></span> and twice to exclude <span class="crossed-icon"></span>
<a class="clear-all-btn js-clear-all-btn">Clear All</a><div class="mt12">Your Feelings</div><li class="btn-filter js-reviews-btn-filter fa-stack" data-id="1">
<i class="fa-regular fa-square fa-stack-2x"></i>
<i class="fa-solid fa-xmark fa-stack-1x" style="display: none;"></i>
<i class="fa-solid fa-check fa-stack-1x" style="display: none;"></i>
Recommended
</li>
<li class="btn-filter js-reviews-btn-filter fa-stack" data-id="2">
<i class="fa-regular fa-square fa-stack-2x"></i>
<i class="fa-solid fa-xmark fa-stack-1x" style="display: none;"></i>
<i class="fa-solid fa-check fa-stack-1x" style="display: none;"></i>
Mixed Feelings
</li>
<li class="btn-filter js-reviews-btn-filter fa-stack" data-id="3">
<i class="fa-regular fa-square fa-stack-2x"></i>
<i class="fa-solid fa-xmark fa-stack-1x" style="display: none;"></i>
<i class="fa-solid fa-check fa-stack-1x" style="display: none;"></i>
Not Recommended
</li>
<div class="mt12">Categories</div><li class="btn-filter js-reviews-btn-filter fa-stack" data-id="4">
<i class="fa-regular fa-square fa-stack-2x"></i>
<i class="fa-solid fa-xmark fa-stack-1x" style="display: none;"></i>
<i class="fa-solid fa-check fa-stack-1x" style="display: none;"></i>
Funny
</li>
<li class="btn-filter js-reviews-btn-filter fa-stack" data-id="5">
<i class="fa-regular fa-square fa-stack-2x"></i>
<i class="fa-solid fa-xmark fa-stack-1x" style="display: none;"></i>
<i class="fa-solid fa-check fa-stack-1x" style="display: none;"></i>
Informative
</li>
<li class="btn-filter js-reviews-btn-filter fa-stack" data-id="6">
<i class="fa-regular fa-square fa-stack-2x"></i>
<i class="fa-solid fa-xmark fa-stack-1x" style="display: none;"></i>
<i class="fa-solid fa-check fa-stack-1x" style="display: none;"></i>
Well-written
</li>
<li class="btn-filter js-reviews-btn-filter fa-stack" data-id="7">
<i class="fa-regular fa-square fa-stack-2x"></i>
<i class="fa-solid fa-xmark fa-stack-1x" style="display: none;"></i>
<i class="fa-solid fa-check fa-stack-1x" style="display: none;"></i>
Creative
</li>
</ul>
<div class="ajax-loader js-ajax-loader"></div>
</div>
<span class="mr12 btn-crossedbox js-reviews-chk-preliminary on ga-click" data-ga-click-type="review-preliminary">
Preliminary
</span>
<span class="mr12 btn-crossedbox js-reviews-chk-spoiler ga-click" data-ga-click-type="review-spoiler">
Spoiler
</span>
</div>
<div class="review-element js-review-element" data-reactions=''><div class="titleblock mb4">
<a href="https://myanimelist.net/anime/934/Higurashi_no_Naku_Koro_ni" class="title ga-click" data-ga-click-type="review-anime-title">Higurashi no Naku Koro ni</a>
<small>(Anime)</small>
<a href="https://myanimelist.net/login.php?error=login_required&from=%2Freviews.php%3Ft%3Danime%26filter_check%3D%26filter_hide%3D%26preliminary%3Don%26spoiler%3Doff%26p%3D1" class="button_add ga-click"><span class="ga-click" data-ga-click-type="list-add-button" data-ga-click-param="aid:934" data-work-type="anime" data-status="0" style="line-height: unset;">add</span></a>
<small>
(<a href="https://myanimelist.net/anime/934/Higurashi_no_Naku_Koro_ni/reviews" class="ga-click" data-ga-click-type="review-anime-title-all-reviews">All reviews</a>)
</small>
</div><div class="thumbbody mt8">
<div class="thumb">
<a href="https://myanimelist.net/profile/crescxnt" class="ga-click" data-ga-click-type="review-anime-reviewer-pic">
<img src="https://cdn.myanimelist.net/images/userimages/6576956.webp?t=1682769000" data-src="https://cdn.myanimelist.net/images/userimages/6576956.webp?t=1682769000" class="lazyloaded" width="48">
</a>
</div>
<div class="body">
<div title="4:42 AM" class="update_at">Apr 29, 2023</div><div class="username">
<a href="https://myanimelist.net/profile/crescxnt" class="ga-click" data-ga-click-type="review-anime-reviewer">crescxnt</a>
</div><div class="tags"><div class="tag mixed-feelings btn-label js-btn-label" data-id="2" data-href="https://myanimelist.net/anime/934/Higurashi_no_Naku_Koro_ni/reviews"><i class="fas fa-star-half-stroke"></i>Mixed Feelings</div></div> <div class="text">
<div class="thumb-right">
<a href="https://myanimelist.net/anime/934/Higurashi_no_Naku_Koro_ni" class="ga-click" data-ga-click-type="review-anime-title-pic">
<img width="48" data-src="https://cdn.myanimelist.net/r/48x71/images/anime/12/19634.jpg?s=9b3bae4f9815ff8774ba9cfce707f3e6" data-srcset="https://cdn.myanimelist.net/r/48x71/images/anime/12/19634.jpg?s=9b3bae4f9815ff8774ba9cfce707f3e6 1x, https://cdn.myanimelist.net/r/96x142/images/anime/12/19634.jpg?s=37184ba66c5718e6d64addd973a57339 2x" class="lazyload" />
</a>
</div>
After dropping this series for about 2 years (or technically putting it on hold), I finally came back to try and finish this anime just because of how renowned it is as a psychological horror. I didn't want to miss out and was curious about it. I'm quite glad I finally am able to finish it.<br />
<br />
Higurashi no Naku Koro ni is definitely hard to get into and understand without any background knowledge of how it works. Going into it, all I knew was how gruesome, twisted, and shocking it is. What confused me the most is how every few episodes is a different arc. While
<span class="js-visible" style="margin-left: -4px;">...</span>
<span class="js-hidden" style="display: none;">watching, I had so many questions about what was going on and really just wanted a bit of explanation but after a few arcs and still no answer to what was happening, I think that's what made me lose interest. I had to search and read the summary of all the episodes/arcs to understand the whole story and everything that happened. After finishing the anime and finally understanding the story, I see why it was structured like that but it was still difficult to sit through the anime not understanding things. I was more confused than scared.<br />
<br />
Watching the anime for the first time, I remember not expecting how it seemed to be like a normal splice of life at first. Everything seemed very peaceful until mentions of people getting murdered or disappearing each year, how the town is cursed, and how people are becoming insane and paranoid. It is a great way to catch all the viewers off-guard and makes the anime successful as a psychological horror. <br />
<br />
If you're into psychological horror and you somehow have not seen this classic, definitely worth a watch. It does teach you some things such as friendship and trust. Even as someone that does not often watch psychological horrors (even though I like and enjoy them) and having a rough time with this anime, I am happy that I watched Higurashi no Naku Koro ni.</span>
</div>
<div class="rating mt20 mb20 js-hidden" style="display: none;">
Reviewer’s Rating: <span class="num">6</span>
</div>
<div class="notice mb12 js-hidden" style="display: none;">What did you think of this review?</div>
<div class="reaction-box mb8 js-hidden" style="display: none;"><div class="btn-reaction js-btn-reaction nice ga-click" data-ga-click-type="review-anime-reaction-nice" data-id="482127" data-val="1" data-more="true">
Nice
<img src="https://cdn.myanimelist.net/images/emoticon/72x72/1f44d.png" alt="Nice"><span class="num">0</span></div><div class="btn-reaction js-btn-reaction loveit ga-click" data-ga-click-type="review-anime-reaction-loveit" data-id="482127" data-val="2" data-more="true">
Love it
<img src="https://cdn.myanimelist.net/images/emoticon/72x72/2764.png" alt="Love it"><span class="num">0</span></div><div class="btn-reaction js-btn-reaction funny ga-click" data-ga-click-type="review-anime-reaction-funny" data-id="482127" data-val="3" data-more="true">
Funny
<img src="https://cdn.myanimelist.net/images/emoticon/72x72/1f602.png" alt="Funny"><span class="num">0</span></div><div class="btn-reaction js-btn-reaction confusing ga-click" data-ga-click-type="review-anime-reaction-confusing" data-id="482127" data-val="4" data-more="false" style="display: none;">
Confusing
<img src="https://cdn.myanimelist.net/images/emoticon/72x72/1f928.png" alt="Confusing"><span class="num">0</span></div><div class="btn-reaction js-btn-reaction informative ga-click" data-ga-click-type="review-anime-reaction-informative" data-id="482127" data-val="5" data-more="true" style="display: none;">
Informative
<img src="https://cdn.myanimelist.net/images/emoticon/72x72/1f4a1.png" alt="Informative"><span class="num">0</span></div><div class="btn-reaction js-btn-reaction well-written ga-click" data-ga-click-type="review-anime-reaction-well-written" data-id="482127" data-val="6" data-more="true" style="display: none;">
Well-written
<img src="https://cdn.myanimelist.net/images/emoticon/72x72/1f4dd.png" alt="Well-written"><span class="num">0</span></div><div class="btn-reaction js-btn-reaction creative ga-click" data-ga-click-type="review-anime-reaction-creative" data-id="482127" data-val="7" data-more="true" style="display: none;">
Creative
<img src="https://cdn.myanimelist.net/images/emoticon/72x72/1f3a8.png" alt="Creative"><span class="num">0</span></div><div class="more_reviews js-more_reviews" style="display: none;"><a href="/profile/crescxnt/reviews" class="ga-click" data-ga-click-type="review-anime-reviewer-all-reviews"><i class="fas fa-angle-right"></i>More reviews by crescxnt (<span class="num">3</span>)
</a></div><div class="btn-showall js-btn-showall"><i class="fas fa-angle-right"></i>Show all</div></div><div class="bottom-navi"><div class="icon-reaction js-icon-reaction" data-id="482127" data-pagename="anime-review"></div><div class="readmore"><a href="#" class="ga-click js-readmore" data-ga-click-type="review-readmore"><i class="fas fa-angle-down"></i>Read more</a></div><div class="showless" style="display: none;"><a href="#" class="ga-click js-showless" data-ga-click-type="review-showless"><i class="fas fa-angle-up"></i>Show less</a></div><div class="open"><a href="https://myanimelist.net/reviews.php?id=482127" class="ga-click" data-ga-click-type="review-permalink"><i class="fas fa-arrow-up-right"></i>Open
</a></div><div class="gift"><a href="https://myanimelist.net/membership" class="ga-click" data-ga-click-type="gift-entry-anime-review" data-ga-click-param="rid:482127"><i class="fas fa-gift"></i>Gift
</a></div><div class="menu"><a href="#" class="btn-popup js-btn-popup"><i class="far fa-ellipsis-h"></i></a><div class="menu-block js-menu-block"><a href="https://myanimelist.net/dbchanges.php?go=reportreview&id=482127" class="link ga-click" data-ga-click-type="review-report">Report</a></div></div></div> </div>
</div>
</div>
<div class="review-element js-review-element" data-reactions=''><div class="titleblock mb4">
<a href="https://myanimelist.net/anime/18245/White_Album_2" class="title ga-click" data-ga-click-type="review-anime-title">White Album 2</a>
<small>(Anime)</small>
<a href="https://myanimelist.net/login.php?error=login_required&from=%2Freviews.php%3Ft%3Danime%26filter_check%3D%26filter_hide%3D%26preliminary%3Don%26spoiler%3Doff%26p%3D1" class="button_add ga-click"><span class="ga-click" data-ga-click-type="list-add-button" data-ga-click-param="aid:18245" data-work-type="anime" data-status="0" style="line-height: unset;">add</span></a>
<small>
(<a href="https://myanimelist.net/anime/18245/White_Album_2/reviews" class="ga-click" data-ga-click-type="review-anime-title-all-reviews">All reviews</a>)
</small>
</div><div class="thumbbody mt8">
<div class="thumb">
<a href="https://myanimelist.net/profile/ishinashi7" class="ga-click" data-ga-click-type="review-anime-reviewer-pic">
<img src="https://cdn.myanimelist.net/s/common/userimages/bb7a17c7-5e32-4a80-8890-5af540009ee3_42x62_i?s=02bdcbc7a3f3449f7d3398c997ebd10c" data-src="https://cdn.myanimelist.net/s/common/userimages/bb7a17c7-5e32-4a80-8890-5af540009ee3_42x62_i?s=02bdcbc7a3f3449f7d3398c997ebd10c" class="lazyloaded" width="48">
</a>
</div>
<div class="body">
<div title="4:30 AM" class="update_at">Apr 29, 2023</div><div class="username">
<a href="https://myanimelist.net/profile/ishinashi7" class="ga-click" data-ga-click-type="review-anime-reviewer">ishinashi7</a>
</div><div class="tags"><div class="tag not-recommended btn-label js-btn-label" data-id="3" data-href="https://myanimelist.net/anime/18245/White_Album_2/reviews"><i class="far fa-star"></i>Not Recommended</div></div> <div class="text">
<div class="thumb-right">
<a href="https://myanimelist.net/anime/18245/White_Album_2" class="ga-click" data-ga-click-type="review-anime-title-pic">
<img width="48" data-src="https://cdn.myanimelist.net/r/48x71/images/anime/2/53561.jpg?s=2336b2555d2f7807030c02b3fd1157bb" data-srcset="https://cdn.myanimelist.net/r/48x71/images/anime/2/53561.jpg?s=2336b2555d2f7807030c02b3fd1157bb 1x, https://cdn.myanimelist.net/r/96x142/images/anime/2/53561.jpg?s=467e4c3165e6d25187284a2c03b48f37 2x" class="lazyload" />
</a>
</div>
NTR garbage<br />
not recommended NTR garbage<br />
not recommended NTR garbage<br />
not recommended NTR garbage<br />
not recommended NTR garbage<br />
not recommended NTR garbage<br />
not recommended NTR garbage<br />
not recommended NTR garbage<br />
not recommended NTR garbage<br />
not recommended NTR garbage<br />
<span class="js-visible" style="margin-left: -4px;">...</span>
<span class="js-hidden" style="display: none;">not recommended NTR garbage<br />
not recommended NTR garbage<br />
not recommended NTR garbage<br />
not recommended NTR garbage<br />
not recommended NTR garbage<br />
not recommended NTR garbage<br />
not recommended NTR garbage<br />
not recommended NTR garbage<br />
not recommended NTR garbage<br />
not recommended NTR garbage<br />
not recommended NTR garbage<br />
not recommended NTR garbage<br />
not recommended NTR garbage<br />
not recommended NTR garbage<br />
not recommended NTR garbage<br />
not recommended NTR garbage<br />
not recommended NTR garbage<br />
not recommended NTR garbage<br />
not recommended NTR garbage<br />
not recommended NTR garbage<br />
not recommended NTR garbage<br />
not recommended NTR garbage<br />
not recommended NTR garbage<br />
not recommended NTR garbage<br />
not recommended NTR garbage<br />
not recommended NTR garbage<br />
not recommended NTR garbage<br />
not recommended NTR garbage<br />
not recommended NTR garbage<br />
not recommended NTR garbage<br />
not recommended NTR garbage<br />
not recommended NTR garbage<br />
not recommended NTR garbage<br />
not recommended NTR garbage<br />
not recommended NTR garbage<br />
not recommended NTR garbage<br />
not recommended NTR garbage<br />
not recommended NTR garbage<br />
not recommended NTR garbage<br />
not recommended NTR garbage<br />
not recommended NTR garbage<br />
not recommended NTR garbage<br />
not recommended NTR garbage<br />
not recommended NTR garbage<br />
not recommended NTR garbage<br />
not recommended NTR garbage<br />
not recommended NTR garbage<br />
not recommended NTR garbage<br />
not recommended NTR garbage<br />
not recommended NTR garbage<br />
not recommended NTR garbage<br />
not recommended NTR garbage<br />
not recommended NTR garbage<br />
not recommended NTR garbage<br />
not recommended NTR garbage<br />
not recommended NTR garbage<br />
not recommended NTR garbage<br />
not recommended NTR garbage<br />
not recommended NTR garbage<br />
not recommended NTR garbage<br />
not recommended NTR garbage<br />
not recommended NTR garbage<br />
not recommended NTR garbage<br />
not recommended NTR garbage<br />
not recommended NTR garbage<br />
not recommended NTR garbage<br />
not recommended NTR garbage<br />
not recommended NTR garbage<br />
not recommended NTR garbage<br />
not recommended NTR garbage<br />
not recommended NTR garbage<br />
not recommended NTR garbage<br />
not recommended NTR garbage<br />
not recommended NTR garbage<br />
not recommended NTR garbage<br />
not recommended NTR garbage<br />
not recommended NTR garbage<br />
not recommended NTR garbage<br />
not recommended NTR garbage<br />
not recommended NTR garbage<br />
not recommended NTR garbage<br />
not recommended NTR garbage<br />
not recommended NTR garbage<br />
not recommended NTR garbage<br />
not recommended NTR garbage<br />
not recommended NTR garbage<br />
not recommended NTR garbage<br />
not recommended NTR garbage<br />
not recommended NTR garbage<br />
not recommended NTR garbage<br />
not recommended NTR garbage<br />
not recommended NTR garbage<br />
not recommended NTR garbage<br />
not recommended NTR garbage<br />
not recommended NTR garbage<br />
not recommended NTR garbage<br />
not recommended NTR garbage<br />
not recommended NTR garbage<br />
not recommended NTR garbage<br />
not recommended NTR garbage<br />
not recommended NTR garbage<br />
not recommended NTR garbage<br />
not recommended NTR garbage<br />
not recommended NTR garbage<br />
not recommended NTR garbage<br />
not recommended NTR garbage<br />
not recommended NTR garbage<br />
not recommended NTR garbage<br />
not recommended NTR garbage<br />
not recommended NTR garbage<br />
not recommended NTR garbage<br />
not recommended NTR garbage<br />
not recommended NTR garbage<br />
not recommended NTR garbage<br />
not recommended NTR garbage<br />
not recommended NTR garbage<br />
not recommended NTR garbage<br />
not recommended NTR garbage<br />
not recommended NTR garbage<br />
not recommended NTR garbage<br />
not recommended NTR garbage<br />
not recommended NTR garbage<br />
not recommended NTR garbage<br />
not recommended NTR garbage<br />
not recommended NTR garbage<br />
not recommended NTR garbage<br />
not recommended NTR garbage<br />
not recommended NTR garbage<br />
not recommended NTR garbage<br />
not recommended NTR garbage<br />
not recommended NTR garbage<br />
not recommended NTR garbage<br />
not recommended NTR garbage<br />
not recommended NTR garbage<br />
not recommended NTR garbage<br />
not recommended NTR garbage<br />
not recommended NTR garbage<br />
not recommended NTR garbage<br />
not recommended NTR garbage<br />
not recommended NTR garbage<br />
not recommended NTR garbage<br />
not recommended NTR garbage<br />
not recommended NTR garbage<br />
not recommended NTR garbage<br />
not recommended NTR garbage<br />
not recommended NTR garbage<br />
not recommended NTR garbage<br />
not recommended NTR garbage<br />
not recommended NTR garbage<br />
not recommended NTR garbage<br />
not recommended NTR garbage<br />
not recommended NTR garbage<br />
not recommended NTR garbage<br />
not recommended NTR garbage<br />
not recommended NTR garbage<br />
not recommended NTR garbage<br />
not recommended NTR garbage<br />
not recommended NTR garbage<br />
not recommended NTR garbage<br />
not recommended NTR garbage<br />
not recommended NTR garbage<br />
not recommended NTR garbage<br />
not recommended NTR garbage<br />
not recommended NTR garbage<br />
not recommended NTR garbage<br />
not recommended NTR garbage<br />
not recommended NTR garbage<br />
not recommended NTR garbage<br />
not recommended NTR garbage<br />
not recommended NTR garbage<br />
not recommended NTR garbage<br />
not recommended NTR garbage<br />
not recommended NTR garbage<br />
not recommended NTR garbage<br />
not recommended NTR garbage<br />
not recommended NTR garbage<br />
not recommended NTR garbage<br />
not recommended NTR garbage<br />
not recommended NTR garbage<br />
not recommended NTR garbage<br />
not recommended NTR garbage<br />
not recommended NTR garbage<br />
not recommended</span>
</div>
<div class="rating mt20 mb20 js-hidden" style="display: none;">
Reviewer’s Rating: <span class="num">5</span>
</div>
<div class="notice mb12 js-hidden" style="display: none;">What did you think of this review?</div>
<div class="reaction-box mb8 js-hidden" style="display: none;"><div class="btn-reaction js-btn-reaction nice ga-click" data-ga-click-type="review-anime-reaction-nice" data-id="482126" data-val="1" data-more="true">
Nice
<img src="https://cdn.myanimelist.net/images/emoticon/72x72/1f44d.png" alt="Nice"><span class="num">0</span></div><div class="btn-reaction js-btn-reaction loveit ga-click" data-ga-click-type="review-anime-reaction-loveit" data-id="482126" data-val="2" data-more="true">
Love it
<img src="https://cdn.myanimelist.net/images/emoticon/72x72/2764.png" alt="Love it"><span class="num">0</span></div><div class="btn-reaction js-btn-reaction funny ga-click" data-ga-click-type="review-anime-reaction-funny" data-id="482126" data-val="3" data-more="true">
Funny
<img src="https://cdn.myanimelist.net/images/emoticon/72x72/1f602.png" alt="Funny"><span class="num">0</span></div><div class="btn-reaction js-btn-reaction confusing ga-click" data-ga-click-type="review-anime-reaction-confusing" data-id="482126" data-val="4" data-more="false" style="display: none;">
Confusing
<img src="https://cdn.myanimelist.net/images/emoticon/72x72/1f928.png" alt="Confusing"><span class="num">0</span></div><div class="btn-reaction js-btn-reaction informative ga-click" data-ga-click-type="review-anime-reaction-informative" data-id="482126" data-val="5" data-more="true" style="display: none;">
Informative
<img src="https://cdn.myanimelist.net/images/emoticon/72x72/1f4a1.png" alt="Informative"><span class="num">0</span></div><div class="btn-reaction js-btn-reaction well-written ga-click" data-ga-click-type="review-anime-reaction-well-written" data-id="482126" data-val="6" data-more="true" style="display: none;">
Well-written
<img src="https://cdn.myanimelist.net/images/emoticon/72x72/1f4dd.png" alt="Well-written"><span class="num">0</span></div><div class="btn-reaction js-btn-reaction creative ga-click" data-ga-click-type="review-anime-reaction-creative" data-id="482126" data-val="7" data-more="true" style="display: none;">
Creative
<img src="https://cdn.myanimelist.net/images/emoticon/72x72/1f3a8.png" alt="Creative"><span class="num">0</span></div><div class="more_reviews js-more_reviews" style="display: none;"><a href="/profile/ishinashi7/reviews" class="ga-click" data-ga-click-type="review-anime-reviewer-all-reviews"><i class="fas fa-angle-right"></i>More reviews by ishinashi7 (<span class="num">1</span>)
</a></div><div class="btn-showall js-btn-showall"><i class="fas fa-angle-right"></i>Show all</div></div><div class="bottom-navi"><div class="icon-reaction js-icon-reaction" data-id="482126" data-pagename="anime-review"></div><div class="readmore"><a href="#" class="ga-click js-readmore" data-ga-click-type="review-readmore"><i class="fas fa-angle-down"></i>Read more</a></div><div class="showless" style="display: none;"><a href="#" class="ga-click js-showless" data-ga-click-type="review-showless"><i class="fas fa-angle-up"></i>Show less</a></div><div class="open"><a href="https://myanimelist.net/reviews.php?id=482126" class="ga-click" data-ga-click-type="review-permalink"><i class="fas fa-arrow-up-right"></i>Open
</a></div><div class="gift"><a href="https://myanimelist.net/membership" class="ga-click" data-ga-click-type="gift-entry-anime-review" data-ga-click-param="rid:482126"><i class="fas fa-gift"></i>Gift
</a></div><div class="menu"><a href="#" class="btn-popup js-btn-popup"><i class="far fa-ellipsis-h"></i></a><div class="menu-block js-menu-block"><a href="https://myanimelist.net/dbchanges.php?go=reportreview&id=482126" class="link ga-click" data-ga-click-type="review-report">Report</a></div></div></div> </div>
</div>
</div>
<div class="review-element js-review-element" data-reactions=''><div class="titleblock mb4">
<a href="https://myanimelist.net/anime/13715/Kennel_Tokorozawa" class="title ga-click" data-ga-click-type="review-anime-title">Kennel Tokorozawa</a>
<small>(Anime)</small>
<a href="https://myanimelist.net/login.php?error=login_required&from=%2Freviews.php%3Ft%3Danime%26filter_check%3D%26filter_hide%3D%26preliminary%3Don%26spoiler%3Doff%26p%3D1" class="button_add ga-click"><span class="ga-click" data-ga-click-type="list-add-button" data-ga-click-param="aid:13715" data-work-type="anime" data-status="0" style="line-height: unset;">add</span></a>
<small>
(<a href="https://myanimelist.net/anime/13715/Kennel_Tokorozawa/reviews" class="ga-click" data-ga-click-type="review-anime-title-all-reviews">All reviews</a>)
</small>
</div><div class="thumbbody mt8">
<div class="thumb">
<a href="https://myanimelist.net/profile/OddsomeOddy" class="ga-click" data-ga-click-type="review-anime-reviewer-pic">
<img src="https://cdn.myanimelist.net/images/userimages/7274918.jpg?t=1682763000" data-src="https://cdn.myanimelist.net/images/userimages/7274918.jpg?t=1682763000" class="lazyloaded" width="48">
</a>
</div>
<div class="body">
<div title="3:01 AM" class="update_at">Apr 29, 2023</div><div class="username">
<a href="https://myanimelist.net/profile/OddsomeOddy" class="ga-click" data-ga-click-type="review-anime-reviewer">OddsomeOddy</a>
</div><div class="tags"><div class="tag recommended btn-label js-btn-label" data-id="1" data-href="https://myanimelist.net/anime/13715/Kennel_Tokorozawa/reviews"><i class="fas fa-star"></i>Recommended</div></div> <div class="text">
<div class="thumb-right">
<a href="https://myanimelist.net/anime/13715/Kennel_Tokorozawa" class="ga-click" data-ga-click-type="review-anime-title-pic">
<img width="48" data-src="https://cdn.myanimelist.net/r/48x71/images/anime/8/38063.jpg?s=f0336e46a0ae88c81e573d1e73084b4f" data-srcset="https://cdn.myanimelist.net/r/48x71/images/anime/8/38063.jpg?s=f0336e46a0ae88c81e573d1e73084b4f 1x, https://cdn.myanimelist.net/r/96x142/images/anime/8/38063.jpg?s=29c82af79da58490dad6f0af382e91d1 2x" class="lazyload" />
</a>
</div>
THIS is the anime ever<br />
<br />
If you wanna introduce your friends to anime, forget about AoT, Death Note and other so called gems. This is all they need to see.<br />
<br />
The movie sets the tone right at the beginning with Rin Tin Tin immediately telling us he wants to hump his owner. No fillers, no flashbacks. Lore straight to the damn point. Character roster gets fleshed out with the addition of an obligatory ugly bastard to fight over the girl. Art style surpassing Mappa, Ufotable, Trigger, etc by a long shot, bet<br />
<br />
Must watch, you don't want to miss out
</div>
<div class="rating mt20 mb20 js-hidden" style="display: none;">
Reviewer’s Rating: <span class="num">2</span>
</div>
<div class="notice mb12 js-hidden" style="display: none;">What did you think of this review?</div>
<div class="reaction-box mb8 js-hidden" style="display: none;"><div class="btn-reaction js-btn-reaction nice ga-click" data-ga-click-type="review-anime-reaction-nice" data-id="482125" data-val="1" data-more="true">
Nice
<img src="https://cdn.myanimelist.net/images/emoticon/72x72/1f44d.png" alt="Nice"><span class="num">0</span></div><div class="btn-reaction js-btn-reaction loveit ga-click" data-ga-click-type="review-anime-reaction-loveit" data-id="482125" data-val="2" data-more="true">
Love it
<img src="https://cdn.myanimelist.net/images/emoticon/72x72/2764.png" alt="Love it"><span class="num">0</span></div><div class="btn-reaction js-btn-reaction funny ga-click" data-ga-click-type="review-anime-reaction-funny" data-id="482125" data-val="3" data-more="true">
Funny
<img src="https://cdn.myanimelist.net/images/emoticon/72x72/1f602.png" alt="Funny"><span class="num">0</span></div><div class="btn-reaction js-btn-reaction confusing ga-click" data-ga-click-type="review-anime-reaction-confusing" data-id="482125" data-val="4" data-more="false" style="display: none;">
Confusing
<img src="https://cdn.myanimelist.net/images/emoticon/72x72/1f928.png" alt="Confusing"><span class="num">0</span></div><div class="btn-reaction js-btn-reaction informative ga-click" data-ga-click-type="review-anime-reaction-informative" data-id="482125" data-val="5" data-more="true" style="display: none;">
Informative
<img src="https://cdn.myanimelist.net/images/emoticon/72x72/1f4a1.png" alt="Informative"><span class="num">0</span></div><div class="btn-reaction js-btn-reaction well-written ga-click" data-ga-click-type="review-anime-reaction-well-written" data-id="482125" data-val="6" data-more="true" style="display: none;">
Well-written
<img src="https://cdn.myanimelist.net/images/emoticon/72x72/1f4dd.png" alt="Well-written"><span class="num">0</span></div><div class="btn-reaction js-btn-reaction creative ga-click" data-ga-click-type="review-anime-reaction-creative" data-id="482125" data-val="7" data-more="true" style="display: none;">
Creative
<img src="https://cdn.myanimelist.net/images/emoticon/72x72/1f3a8.png" alt="Creative"><span class="num">0</span></div><div class="more_reviews js-more_reviews" style="display: none;"><a href="/profile/OddsomeOddy/reviews" class="ga-click" data-ga-click-type="review-anime-reviewer-all-reviews"><i class="fas fa-angle-right"></i>More reviews by OddsomeOddy (<span class="num">1</span>)
</a></div><div class="btn-showall js-btn-showall"><i class="fas fa-angle-right"></i>Show all</div></div><div class="bottom-navi"><div class="icon-reaction js-icon-reaction" data-id="482125" data-pagename="anime-review"></div><div class="readmore"><a href="#" class="ga-click js-readmore" data-ga-click-type="review-readmore"><i class="fas fa-angle-down"></i>Read more</a></div><div class="showless" style="display: none;"><a href="#" class="ga-click js-showless" data-ga-click-type="review-showless"><i class="fas fa-angle-up"></i>Show less</a></div><div class="open"><a href="https://myanimelist.net/reviews.php?id=482125" class="ga-click" data-ga-click-type="review-permalink"><i class="fas fa-arrow-up-right"></i>Open
</a></div><div class="gift"><a href="https://myanimelist.net/membership" class="ga-click" data-ga-click-type="gift-entry-anime-review" data-ga-click-param="rid:482125"><i class="fas fa-gift"></i>Gift
</a></div><div class="menu"><a href="#" class="btn-popup js-btn-popup"><i class="far fa-ellipsis-h"></i></a><div class="menu-block js-menu-block"><a href="https://myanimelist.net/dbchanges.php?go=reportreview&id=482125" class="link ga-click" data-ga-click-type="review-report">Report</a></div></div></div> </div>
</div>
</div>
<div class="review-element js-review-element" data-reactions=''><div class="titleblock mb4">
<a href="https://myanimelist.net/anime/41514/Itai_no_wa_Iya_nanode_Bougyoryoku_ni_Kyokufuri_Shitai_to_Omoimasu_2" class="title ga-click" data-ga-click-type="review-anime-title">Itai no wa Iya nanode Bougyoryoku ni Kyokufuri Shitai to Omoimasu. 2</a>
<small>(Anime)</small>
<a href="https://myanimelist.net/login.php?error=login_required&from=%2Freviews.php%3Ft%3Danime%26filter_check%3D%26filter_hide%3D%26preliminary%3Don%26spoiler%3Doff%26p%3D1" class="button_add ga-click"><span class="ga-click" data-ga-click-type="list-add-button" data-ga-click-param="aid:41514" data-work-type="anime" data-status="0" style="line-height: unset;">add</span></a>
<small>
(<a href="https://myanimelist.net/anime/41514/Itai_no_wa_Iya_nanode_Bougyoryoku_ni_Kyokufuri_Shitai_to_Omoimasu_2/reviews" class="ga-click" data-ga-click-type="review-anime-title-all-reviews">All reviews</a>)
</small>
</div><div class="thumbbody mt8">
<div class="thumb">
<a href="https://myanimelist.net/profile/red-artist" class="ga-click" data-ga-click-type="review-anime-reviewer-pic">
<img src="https://cdn.myanimelist.net/images/userimages/thumbs/5955366_thumb.jpg?t=1682761800" data-src="https://cdn.myanimelist.net/images/userimages/thumbs/5955366_thumb.jpg?t=1682761800" class="lazyloaded" width="48">
</a>
</div>
<div class="body">
<div title="2:48 AM" class="update_at">Apr 29, 2023</div><div class="username">
<a href="https://myanimelist.net/profile/red-artist" class="ga-click" data-ga-click-type="review-anime-reviewer">red-artist</a>
</div><div class="tags"><div class="tag not-recommended btn-label js-btn-label" data-id="3" data-href="https://myanimelist.net/anime/41514/Itai_no_wa_Iya_nanode_Bougyoryoku_ni_Kyokufuri_Shitai_to_Omoimasu_2/reviews"><i class="far fa-star"></i>Not Recommended</div></div> <div class="text">
<div class="thumb-right">
<a href="https://myanimelist.net/anime/41514/Itai_no_wa_Iya_nanode_Bougyoryoku_ni_Kyokufuri_Shitai_to_Omoimasu_2" class="ga-click" data-ga-click-type="review-anime-title-pic">
<img width="48" data-src="https://cdn.myanimelist.net/r/48x71/images/anime/1782/128859.jpg?s=265c39ab0da65c1a1ece434fb82a0143" data-srcset="https://cdn.myanimelist.net/r/48x71/images/anime/1782/128859.jpg?s=265c39ab0da65c1a1ece434fb82a0143 1x, https://cdn.myanimelist.net/r/96x142/images/anime/1782/128859.jpg?s=d992d0311f0031b4ac4469bfbd61bb34 2x" class="lazyload" />
</a>
</div>
Bofuri season 1 was all about Maple being OP. There was enough power scaling to keep the viewers interested with its ridiculousness, while the plot slowly setup the huge cast of characters in the main three guilds. <br />
<br />
Bofuri season 2 is more about all these characters interacting with each other. As with many stories / anime with a "hook", once the introduction of the world is done, things usually get into generic mode to just stretch the plot as much as possible. The same applies to Bofuri.<br />
<br />
Season 2 does have some endearing moments. But the vast majority of the show is character interactions, and the
<span class="js-visible" style="margin-left: -4px;">...</span>
<span class="js-hidden" style="display: none;">characters just don't have enough charm to keep the viewer's attention.<br />
<br />
Lets be honest here, most of the dialogue in these generic mode plots is arigato, yoroshku, tanomu, taskette, sugoi etc.. Characters helping each other out, showing off their new skills, showing gratitude when someone saves them and so on. <br />
<br />
We have seen these scenes in one form or another in many isekai already. It would be boring to watch these with bofuri cast. <br />
<br />
Again, i would like to remind you that there are some fun moments of Maple in this season. But they cannot carry the rest of the generic cast, especially in the second half of the anime.</span>
</div>
<div class="rating mt20 mb20 js-hidden" style="display: none;">
Reviewer’s Rating: <span class="num">5</span>
</div>
<div class="notice mb12 js-hidden" style="display: none;">What did you think of this review?</div>
<div class="reaction-box mb8 js-hidden" style="display: none;"><div class="btn-reaction js-btn-reaction nice ga-click" data-ga-click-type="review-anime-reaction-nice" data-id="482124" data-val="1" data-more="true">
Nice
<img src="https://cdn.myanimelist.net/images/emoticon/72x72/1f44d.png" alt="Nice"><span class="num">0</span></div><div class="btn-reaction js-btn-reaction loveit ga-click" data-ga-click-type="review-anime-reaction-loveit" data-id="482124" data-val="2" data-more="true">
Love it
<img src="https://cdn.myanimelist.net/images/emoticon/72x72/2764.png" alt="Love it"><span class="num">0</span></div><div class="btn-reaction js-btn-reaction funny ga-click" data-ga-click-type="review-anime-reaction-funny" data-id="482124" data-val="3" data-more="true">
Funny
<img src="https://cdn.myanimelist.net/images/emoticon/72x72/1f602.png" alt="Funny"><span class="num">0</span></div><div class="btn-reaction js-btn-reaction confusing ga-click" data-ga-click-type="review-anime-reaction-confusing" data-id="482124" data-val="4" data-more="false" style="display: none;">
Confusing
<img src="https://cdn.myanimelist.net/images/emoticon/72x72/1f928.png" alt="Confusing"><span class="num">0</span></div><div class="btn-reaction js-btn-reaction informative ga-click" data-ga-click-type="review-anime-reaction-informative" data-id="482124" data-val="5" data-more="true" style="display: none;">
Informative
<img src="https://cdn.myanimelist.net/images/emoticon/72x72/1f4a1.png" alt="Informative"><span class="num">0</span></div><div class="btn-reaction js-btn-reaction well-written ga-click" data-ga-click-type="review-anime-reaction-well-written" data-id="482124" data-val="6" data-more="true" style="display: none;">
Well-written
<img src="https://cdn.myanimelist.net/images/emoticon/72x72/1f4dd.png" alt="Well-written"><span class="num">0</span></div><div class="btn-reaction js-btn-reaction creative ga-click" data-ga-click-type="review-anime-reaction-creative" data-id="482124" data-val="7" data-more="true" style="display: none;">
Creative
<img src="https://cdn.myanimelist.net/images/emoticon/72x72/1f3a8.png" alt="Creative"><span class="num">0</span></div><div class="more_reviews js-more_reviews" style="display: none;"><a href="/profile/red-artist/reviews" class="ga-click" data-ga-click-type="review-anime-reviewer-all-reviews"><i class="fas fa-angle-right"></i>More reviews by red-artist (<span class="num">35</span>)
</a></div><div class="btn-showall js-btn-showall"><i class="fas fa-angle-right"></i>Show all</div></div><div class="bottom-navi"><div class="icon-reaction js-icon-reaction" data-id="482124" data-pagename="anime-review"></div><div class="readmore"><a href="#" class="ga-click js-readmore" data-ga-click-type="review-readmore"><i class="fas fa-angle-down"></i>Read more</a></div><div class="showless" style="display: none;"><a href="#" class="ga-click js-showless" data-ga-click-type="review-showless"><i class="fas fa-angle-up"></i>Show less</a></div><div class="open"><a href="https://myanimelist.net/reviews.php?id=482124" class="ga-click" data-ga-click-type="review-permalink"><i class="fas fa-arrow-up-right"></i>Open
</a></div><div class="gift"><a href="https://myanimelist.net/membership" class="ga-click" data-ga-click-type="gift-entry-anime-review" data-ga-click-param="rid:482124"><i class="fas fa-gift"></i>Gift
</a></div><div class="menu"><a href="#" class="btn-popup js-btn-popup"><i class="far fa-ellipsis-h"></i></a><div class="menu-block js-menu-block"><a href="https://myanimelist.net/dbchanges.php?go=reportreview&id=482124" class="link ga-click" data-ga-click-type="review-report">Report</a></div></div></div> </div>
</div>
</div>
<div class="review-element js-review-element" data-reactions=''><div class="titleblock mb4">
<a href="https://myanimelist.net/anime/1293/Urusei_Yatsura" class="title ga-click" data-ga-click-type="review-anime-title">Urusei Yatsura</a>
<small>(Anime)</small>
<a href="https://myanimelist.net/login.php?error=login_required&from=%2Freviews.php%3Ft%3Danime%26filter_check%3D%26filter_hide%3D%26preliminary%3Don%26spoiler%3Doff%26p%3D1" class="button_add ga-click"><span class="ga-click" data-ga-click-type="list-add-button" data-ga-click-param="aid:1293" data-work-type="anime" data-status="0" style="line-height: unset;">add</span></a>
<small>
(<a href="https://myanimelist.net/anime/1293/Urusei_Yatsura/reviews" class="ga-click" data-ga-click-type="review-anime-title-all-reviews">All reviews</a>)
</small>
</div><div class="thumbbody mt8">
<div class="thumb">
<a href="https://myanimelist.net/profile/WeeabooOtaku95" class="ga-click" data-ga-click-type="review-anime-reviewer-pic">
<img src="https://cdn.myanimelist.net/images/userimages/7083168.jpg?t=1682761200" data-src="https://cdn.myanimelist.net/images/userimages/7083168.jpg?t=1682761200" class="lazyloaded" width="48">
</a>
</div>
<div class="body">
<div title="2:23 AM" class="update_at">Apr 29, 2023</div><div class="username">
<a href="https://myanimelist.net/profile/WeeabooOtaku95" class="ga-click" data-ga-click-type="review-anime-reviewer">WeeabooOtaku95</a>
</div><div class="tags"><div class="tag recommended btn-label js-btn-label" data-id="1" data-href="https://myanimelist.net/anime/1293/Urusei_Yatsura/reviews"><i class="fas fa-star"></i>Recommended</div></div> <div class="text">
<div class="thumb-right">
<a href="https://myanimelist.net/anime/1293/Urusei_Yatsura" class="ga-click" data-ga-click-type="review-anime-title-pic">
<img width="48" data-src="https://cdn.myanimelist.net/r/48x71/images/anime/9/17573.jpg?s=82086ed1470a2d45d0d74fea882c6ff8" data-srcset="https://cdn.myanimelist.net/r/48x71/images/anime/9/17573.jpg?s=82086ed1470a2d45d0d74fea882c6ff8 1x, https://cdn.myanimelist.net/r/96x142/images/anime/9/17573.jpg?s=6c8eed97a883a540b70ebb90b9fcb531 2x" class="lazyload" />
</a>
</div>
For the thing about Urusei Yatsura is that this series was adapted from the original manga of the same name by Rumiko Takahashi this series has capsulated about 195 episodes in which is got to the manga source material.<br />
<br />
<br />
Story<br />
It starts of with a perverted girl hunting lecher boy named Ataru Moroboshi always had been unlikeliest feeling he had is that has got to him until the Buddhist monk named Cherry has been noticed is that whenever he is up to something is that around the neighborhood about the curses and Evil spirits could be everywhere, but when the Alien race Oni wanted to invade Earth
<span class="js-visible" style="margin-left: -4px;">...</span>
<span class="js-hidden" style="display: none;">but apparently Ataru has been selected as Earth champion when his opponent is Princess Lum herself for the game of tag is something that Ataru had in mind at this point of course so Ataru realize that he shall never gave up for the finals when his girlfriend named Shinobu promises Ataru to marry her if he basically wins for his charisma like feeling things had to go the way for Ataru grabbed Lum's horns and he won during the finals if Ataru can marry Shinobu but unfortunately Lum decided to fall in love with Ataru as her proposal which caused Shinobu to be out in the cold for these parts so Lum may fell in love with Ataru but whenever Ataru cheats on Lum when he goes girl hunting for another girl Lum loses her temper and she electrocutedAtaru with her electrifying shocks whenever Ataru is up to something to make Lum loses her temper, so when Megane and his friends always wanted to get the attention of how they wanted Lum ever since this happened because of how they set Ataru off which it wasn't long until Lum attended Ataru's school as a schoolmate which this how it was until Shutaro Mendo arrived as well as Lum's friends and her relatives arrived as well which it has gotten to this of how this has happened. <br />
<br />
<br />
<br />
Animation <br />
The animation is good especially which is alot very creative and more artistic as opposed to Rumiko's art style and the animation directors worked on the animation for what they had a lot to do for they worked on the animation for the series like Urusei Yatsura which is very artistically got to deliver the goods. <br />
<br />
<br />
<br />
<br />
Music<br />
The music is very great especially for what to hear from an earlyn80s anime for what they composed especially for the BGM music for each episode of this series.<br />
<br />
<br />
<br />
Characters <br />
Well the reasons why is that to explain about the characters is that they have like the different types of personalities on each character from the Urusei Yatsura series and on top of this for the characters have like two different personalities especially every one of then for all of this for example Ran she may be sweet and happy go lucky like Snow White however she has a violent evil villain like side which Ran would have been an antagonist for example Eliza from Candy Candy, Queen Beryl from Sailor Moon series and Togenishia from Hana no ko Lunlun which that makes pure antagonist like characteristics especially for the female antagonist which has a violent evil villain side like Ran which that takes the big example than it has ever been done before, there is other characters that are bratty for example Lum's toddler cousin named Jariten he always has a spoiled brat like personality like he thinks that he could get away with whatever he wants like the whole world revolves around Jariten, then you have Lum's ex boyfriend named Rei he always eats food he may be a glutton and he is also dim-witted but whenever he hears about Lum wanted to marry Ataru he basically transformed into a creature that resembles a tiger and a bull called ushitora however he falls in love with Ran, Shutaro Mendo his personality is the lady killer like characteristic traits as well there is most other characters such as Yuki onna character for example Oyuki she is the icy snow princess of Neptune which she could be the example of kuudere characteristic traits of Oyuki for the example for the character's personalities in general. <br />
<br />
<br />
<br />
Production <br />
The production is very well done is that the episode directors and writers wrote the episode for the episode script of how they worked on the production of Urusei Yatsura which it has alot to do for it considered that Mamoru Oshii only directed 105 episodes of the series until he later directed the movies such as Urusei Yatsura Only You and Urusei Yatsura Beautiful Dreamer until he quits the production of the Urusei Yatsura series until Kazuo Yamazaki directed 106-195 remaining episodes of the series like Urusei Yatsura in which Studio Deen has alot to do for the production of this series.<br />
<br />
<br />
Overall <br />
This series premiered originally on October 14th 1981 around the same year as Dogtanian and the three Muskehounds and Ulysses 31 but for Urusei Yatsura on the other hand has gotten a lot more attention the most especially that this series was adapted from the original manga by Rumiko Takahashi who is known for Maison Ikkoku, Ranma 1/2, Inuyasha many of her other works she worked on this series has got to the fans attention in the 80s during the golden age era of anime. <br />
<br />
<br />
<br />
Enjoyment <br />
The thing about is that how it makes Urusei Yatsura popular is that this series has spawned with a series of 6 movies, OVA series, 2008 OVA special and the new Urusei Yatsura series that came out in 2022 however the original Urusei Yatsura on the other hand this series is a good way to watch despite that this series has only about 195 episodes which it almost had 200 episodes but this series has some harem elements on the tropes there is some comedy as well and it has its moments as well.<br />
<br />
<br />
Score<br />
10/10<br />
<br />
<br />
<br />
If you wanted to watch an classic anime series from the 80s which it is something to.binge watch for the enjoyment give Urusei Yatsura series a watch it's getting much weirder.</span>
</div>
<div class="rating mt20 mb20 js-hidden" style="display: none;">
Reviewer’s Rating: <span class="num">10</span>
</div>
<div class="notice mb12 js-hidden" style="display: none;">What did you think of this review?</div>
<div class="reaction-box mb8 js-hidden" style="display: none;"><div class="btn-reaction js-btn-reaction nice ga-click" data-ga-click-type="review-anime-reaction-nice" data-id="482122" data-val="1" data-more="true">
Nice
<img src="https://cdn.myanimelist.net/images/emoticon/72x72/1f44d.png" alt="Nice"><span class="num">0</span></div><div class="btn-reaction js-btn-reaction loveit ga-click" data-ga-click-type="review-anime-reaction-loveit" data-id="482122" data-val="2" data-more="true">
Love it
<img src="https://cdn.myanimelist.net/images/emoticon/72x72/2764.png" alt="Love it"><span class="num">0</span></div><div class="btn-reaction js-btn-reaction funny ga-click" data-ga-click-type="review-anime-reaction-funny" data-id="482122" data-val="3" data-more="true">
Funny
<img src="https://cdn.myanimelist.net/images/emoticon/72x72/1f602.png" alt="Funny"><span class="num">0</span></div><div class="btn-reaction js-btn-reaction confusing ga-click" data-ga-click-type="review-anime-reaction-confusing" data-id="482122" data-val="4" data-more="false" style="display: none;">
Confusing
<img src="https://cdn.myanimelist.net/images/emoticon/72x72/1f928.png" alt="Confusing"><span class="num">0</span></div><div class="btn-reaction js-btn-reaction informative ga-click" data-ga-click-type="review-anime-reaction-informative" data-id="482122" data-val="5" data-more="true" style="display: none;">
Informative
<img src="https://cdn.myanimelist.net/images/emoticon/72x72/1f4a1.png" alt="Informative"><span class="num">0</span></div><div class="btn-reaction js-btn-reaction well-written ga-click" data-ga-click-type="review-anime-reaction-well-written" data-id="482122" data-val="6" data-more="true" style="display: none;">
Well-written
<img src="https://cdn.myanimelist.net/images/emoticon/72x72/1f4dd.png" alt="Well-written"><span class="num">0</span></div><div class="btn-reaction js-btn-reaction creative ga-click" data-ga-click-type="review-anime-reaction-creative" data-id="482122" data-val="7" data-more="true" style="display: none;">
Creative
<img src="https://cdn.myanimelist.net/images/emoticon/72x72/1f3a8.png" alt="Creative"><span class="num">0</span></div><div class="more_reviews js-more_reviews" style="display: none;"><a href="/profile/WeeabooOtaku95/reviews" class="ga-click" data-ga-click-type="review-anime-reviewer-all-reviews"><i class="fas fa-angle-right"></i>More reviews by WeeabooOtaku95 (<span class="num">7</span>)
</a></div><div class="btn-showall js-btn-showall"><i class="fas fa-angle-right"></i>Show all</div></div><div class="bottom-navi"><div class="icon-reaction js-icon-reaction" data-id="482122" data-pagename="anime-review"></div><div class="readmore"><a href="#" class="ga-click js-readmore" data-ga-click-type="review-readmore"><i class="fas fa-angle-down"></i>Read more</a></div><div class="showless" style="display: none;"><a href="#" class="ga-click js-showless" data-ga-click-type="review-showless"><i class="fas fa-angle-up"></i>Show less</a></div><div class="open"><a href="https://myanimelist.net/reviews.php?id=482122" class="ga-click" data-ga-click-type="review-permalink"><i class="fas fa-arrow-up-right"></i>Open
</a></div><div class="gift"><a href="https://myanimelist.net/membership" class="ga-click" data-ga-click-type="gift-entry-anime-review" data-ga-click-param="rid:482122"><i class="fas fa-gift"></i>Gift
</a></div><div class="menu"><a href="#" class="btn-popup js-btn-popup"><i class="far fa-ellipsis-h"></i></a><div class="menu-block js-menu-block"><a href="https://myanimelist.net/dbchanges.php?go=reportreview&id=482122" class="link ga-click" data-ga-click-type="review-report">Report</a></div></div></div> </div>
</div>
</div>
<div class="review-element js-review-element" data-reactions='{"icon":["3"],"num":1,"count":["0","0","1","0","0","0","0"]}'><div class="titleblock mb4">
<a href="https://myanimelist.net/anime/51817/Watashi_no_Yuri_wa_Oshigoto_desu" class="title ga-click" data-ga-click-type="review-anime-title">Watashi no Yuri wa Oshigoto desu!</a>
<small>(Anime)</small>
<a href="https://myanimelist.net/login.php?error=login_required&from=%2Freviews.php%3Ft%3Danime%26filter_check%3D%26filter_hide%3D%26preliminary%3Don%26spoiler%3Doff%26p%3D1" class="button_add ga-click"><span class="ga-click" data-ga-click-type="list-add-button" data-ga-click-param="aid:51817" data-work-type="anime" data-status="0" style="line-height: unset;">add</span></a>
<small>
(<a href="https://myanimelist.net/anime/51817/Watashi_no_Yuri_wa_Oshigoto_desu/reviews" class="ga-click" data-ga-click-type="review-anime-title-all-reviews">All reviews</a>)
</small>
</div><div class="thumbbody mt8">
<div class="thumb">
<a href="https://myanimelist.net/profile/red-artist" class="ga-click" data-ga-click-type="review-anime-reviewer-pic">
<img src="https://cdn.myanimelist.net/images/userimages/thumbs/5955366_thumb.jpg?t=1682761800" data-src="https://cdn.myanimelist.net/images/userimages/thumbs/5955366_thumb.jpg?t=1682761800" class="lazyloaded" width="48">
</a>
</div>
<div class="body">
<div title="2:14 AM" class="update_at">Apr 29, 2023</div><div class="username">
<a href="https://myanimelist.net/profile/red-artist" class="ga-click" data-ga-click-type="review-anime-reviewer">red-artist</a>
</div><div class="tags"><div class="tag not-recommended btn-label js-btn-label" data-id="3" data-href="https://myanimelist.net/anime/51817/Watashi_no_Yuri_wa_Oshigoto_desu/reviews"><i class="far fa-star"></i>Not Recommended</div><div class="tag preliminary">Preliminary
<span>
(4/12 eps)
</span></div></div> <div class="text">
<div class="thumb-right">
<a href="https://myanimelist.net/anime/51817/Watashi_no_Yuri_wa_Oshigoto_desu" class="ga-click" data-ga-click-type="review-anime-title-pic">
<img width="48" data-src="https://cdn.myanimelist.net/r/48x71/images/anime/1708/133360.jpg?s=c7b1694daf7efa1ddf760a9e0f88766b" data-srcset="https://cdn.myanimelist.net/r/48x71/images/anime/1708/133360.jpg?s=c7b1694daf7efa1ddf760a9e0f88766b 1x, https://cdn.myanimelist.net/r/96x142/images/anime/1708/133360.jpg?s=aba2ab8669d9f4f2b414e9ca50706da3 2x" class="lazyload" />
</a>
</div>
Some reviews are opinions. Some reviews are warning signs. This is a warning sign telling you to not waste your time.<br />
<br />
Plot: MC accidentally hurts the manager of a roleplay cafe, and has to help her out until the injury is healed. The rest of the plot is just forced drama based on misunderstandings between characters. <br />
<br />
There are a lot of complaints, but the problem is actually something much more fundamental. This anime doesn't have atleast one positive thing to capture the audience. The setting is boring. The characters are boring. The plot is boring. No comedy. No romance. No yuri at all. No fan service
<span class="js-visible" style="margin-left: -4px;">...</span>
<span class="js-hidden" style="display: none;">either.<br />
<br />
And instead, things just get more and more annoying. The show is basically a teenage "Drama", and most of the drama is derived from forced misunderstandings. I shall give you two examples:<br />
1. MC talking about a friend with some other classmates, and the friend overhearing the conversation at just the wrong time and misunderstanding the intention due to not knowing the context of the conversation.<br />
2. MC talking outside a dress changing booth, thinking its her friend inside.. and well, its not. drama again.<br />
<br />
This is how anime used to be during 2010 tbh. and i hated them. Continuously screaming at the monitor, telling the characters to just talk with each other and resolve all this bullshit in two minutes instead of stretching the emotional circus for 3 episodes. The characters are so shallow, and i guess the only personality they will ever have is probably their "past trauma".<br />
<br />
Honestly, i have no idea how i watched this anime for 4 episodes without fast forwarding. Thinking back, every single minute of this anime was just sad cringe pretending to be some "deep" reflection on trust issues.</span>
</div>
<div class="rating mt20 mb20 js-hidden" style="display: none;">
Reviewer’s Rating: <span class="num">2</span>
</div>
<div class="notice mb12 js-hidden" style="display: none;">What did you think of this review?</div>
<div class="reaction-box mb8 js-hidden" style="display: none;"><div class="btn-reaction js-btn-reaction nice ga-click" data-ga-click-type="review-anime-reaction-nice" data-id="482120" data-val="1" data-more="true">
Nice
<img src="https://cdn.myanimelist.net/images/emoticon/72x72/1f44d.png" alt="Nice"><span class="num">0</span></div><div class="btn-reaction js-btn-reaction loveit ga-click" data-ga-click-type="review-anime-reaction-loveit" data-id="482120" data-val="2" data-more="true">
Love it
<img src="https://cdn.myanimelist.net/images/emoticon/72x72/2764.png" alt="Love it"><span class="num">0</span></div><div class="btn-reaction js-btn-reaction funny ga-click" data-ga-click-type="review-anime-reaction-funny" data-id="482120" data-val="3" data-more="true">
Funny
<img src="https://cdn.myanimelist.net/images/emoticon/72x72/1f602.png" alt="Funny"><span class="num">0</span></div><div class="btn-reaction js-btn-reaction confusing ga-click" data-ga-click-type="review-anime-reaction-confusing" data-id="482120" data-val="4" data-more="false" style="display: none;">
Confusing
<img src="https://cdn.myanimelist.net/images/emoticon/72x72/1f928.png" alt="Confusing"><span class="num">0</span></div><div class="btn-reaction js-btn-reaction informative ga-click" data-ga-click-type="review-anime-reaction-informative" data-id="482120" data-val="5" data-more="true" style="display: none;">
Informative
<img src="https://cdn.myanimelist.net/images/emoticon/72x72/1f4a1.png" alt="Informative"><span class="num">0</span></div><div class="btn-reaction js-btn-reaction well-written ga-click" data-ga-click-type="review-anime-reaction-well-written" data-id="482120" data-val="6" data-more="true" style="display: none;">
Well-written
<img src="https://cdn.myanimelist.net/images/emoticon/72x72/1f4dd.png" alt="Well-written"><span class="num">0</span></div><div class="btn-reaction js-btn-reaction creative ga-click" data-ga-click-type="review-anime-reaction-creative" data-id="482120" data-val="7" data-more="true" style="display: none;">
Creative
<img src="https://cdn.myanimelist.net/images/emoticon/72x72/1f3a8.png" alt="Creative"><span class="num">0</span></div><div class="more_reviews js-more_reviews" style="display: none;"><a href="/profile/red-artist/reviews" class="ga-click" data-ga-click-type="review-anime-reviewer-all-reviews"><i class="fas fa-angle-right"></i>More reviews by red-artist (<span class="num">35</span>)
</a></div><div class="btn-showall js-btn-showall"><i class="fas fa-angle-right"></i>Show all</div></div><div class="bottom-navi"><div class="icon-reaction js-icon-reaction" data-id="482120" data-pagename="anime-review"></div><div class="readmore"><a href="#" class="ga-click js-readmore" data-ga-click-type="review-readmore"><i class="fas fa-angle-down"></i>Read more</a></div><div class="showless" style="display: none;"><a href="#" class="ga-click js-showless" data-ga-click-type="review-showless"><i class="fas fa-angle-up"></i>Show less</a></div><div class="open"><a href="https://myanimelist.net/reviews.php?id=482120" class="ga-click" data-ga-click-type="review-permalink"><i class="fas fa-arrow-up-right"></i>Open
</a></div><div class="gift"><a href="https://myanimelist.net/membership" class="ga-click" data-ga-click-type="gift-entry-anime-review" data-ga-click-param="rid:482120"><i class="fas fa-gift"></i>Gift
</a></div><div class="menu"><a href="#" class="btn-popup js-btn-popup"><i class="far fa-ellipsis-h"></i></a><div class="menu-block js-menu-block"><a href="https://myanimelist.net/dbchanges.php?go=reportreview&id=482120" class="link ga-click" data-ga-click-type="review-report">Report</a></div></div></div> </div>
</div>
</div>
<div class="review-element js-review-element" data-reactions='{"icon":["1"],"num":2,"count":["2","0","0","0","0","0","0"]}'><div class="titleblock mb4">
<a href="https://myanimelist.net/anime/54259/Rokudou_no_Onna-tachi" class="title ga-click" data-ga-click-type="review-anime-title">Rokudou no Onna-tachi</a>
<small>(Anime)</small>
<a href="https://myanimelist.net/login.php?error=login_required&from=%2Freviews.php%3Ft%3Danime%26filter_check%3D%26filter_hide%3D%26preliminary%3Don%26spoiler%3Doff%26p%3D1" class="button_add ga-click"><span class="ga-click" data-ga-click-type="list-add-button" data-ga-click-param="aid:54259" data-work-type="anime" data-status="0" style="line-height: unset;">add</span></a>
<small>
(<a href="https://myanimelist.net/anime/54259/Rokudou_no_Onna-tachi/reviews" class="ga-click" data-ga-click-type="review-anime-title-all-reviews">All reviews</a>)
</small>
</div><div class="thumbbody mt8">
<div class="thumb">
<a href="https://myanimelist.net/profile/ProphetOfCringe" class="ga-click" data-ga-click-type="review-anime-reviewer-pic">
<img src="https://cdn.myanimelist.net/images/userimages/8703809.jpg?t=1682762400" data-src="https://cdn.myanimelist.net/images/userimages/8703809.jpg?t=1682762400" class="lazyloaded" width="48">
</a>
</div>
<div class="body">
<div title="1:38 AM" class="update_at">Apr 29, 2023</div><div class="username">
<a href="https://myanimelist.net/profile/ProphetOfCringe" class="ga-click" data-ga-click-type="review-anime-reviewer">ProphetOfCringe</a>
</div><div class="tags"><div class="tag recommended btn-label js-btn-label" data-id="1" data-href="https://myanimelist.net/anime/54259/Rokudou_no_Onna-tachi/reviews"><i class="fas fa-star"></i>Recommended</div><div class="tag preliminary">Preliminary
<span>
(4/? eps)
</span></div></div> <div class="text">
<div class="thumb-right">
<a href="https://myanimelist.net/anime/54259/Rokudou_no_Onna-tachi" class="ga-click" data-ga-click-type="review-anime-title-pic">
<img width="48" data-src="https://cdn.myanimelist.net/r/48x71/images/anime/1933/134709.jpg?s=fdb6263122b537f646a69631807e1951" data-srcset="https://cdn.myanimelist.net/r/48x71/images/anime/1933/134709.jpg?s=fdb6263122b537f646a69631807e1951 1x, https://cdn.myanimelist.net/r/96x142/images/anime/1933/134709.jpg?s=635facacfc3c0f849c7c91c0713f082c 2x" class="lazyload" />
</a>
</div>
A lot of the criticism that I am seeing this show gets is that; the show is a generic harem anime, that the show is wish fulfillment, or that the MC is annoying, weak, and spineless. However, I question how one could convincingly make these arguments, aside from maybe the last one, but even with that one I don't find a good argument as to why the show is not worth checking out. <br />
<br />
At first glance, I too thought it was going to be another generic harem with an MC I will hate. But the show manages to circumvent most if not all the things
<span class="js-visible" style="margin-left: -4px;">...</span>
<span class="js-hidden" style="display: none;">I would immediately find annoying and fault the show for. In most generic harem animes the girls gravitate toward the MC for no explainable reason, other than usually he's incredibly strong from the get-go or he's a "nice guy". In this show, the main character, Rokudou, has the ability to make 'bad girls' fall in love with him through a power passed on to him by his grandfather. I much prefer this explanation as the ability also serves as the main hook and directly impacts the plot.<br />
<br />
The show is not just wish fulfillment either. If this show was wish fulfillment Rokudou's ability would also make him super strong while making him get all the girls allowing him to beat up any of the delinquents or bullies he finds in his path, getting his revenge and making him end up at the top of the social ladder. But that's not what his ability does and he doesn't use his abilities to get revenge either. Instead, he does something surprising and admirable, he chooses to reform the bad girls and thus making them no longer in love with him. Instead of taking advantage of these girls to fill the show's runtime with ecchi hijinks or beat up his bullies. He chooses not to take the easy path and works to stand up for himself.<br />
<br />
Rokudou's main goal isn't to become popular with women or get revenge using the girls he practically mind-controls with his ability, instead, his goal is to make school life enjoyable for him and his friends. This is extremely refreshing to have an anime where the MC is actually a decent person. Whereas another anime would illustrate the MC is a "nice guy" by making him just a regular ass dude and just not an asshole. It makes Rokudou stand out from other MCs. Rokudou may be a wimp, cringe, and he does cry so you might find him annoying and still dislike him. But I believe that just lays the groundwork for his character to grow throughout the show. Whether they capitalize on that potential is yet to be seen.<br />
<br />
This anime may not blow your socks off but it definitely isn't horrible. And I believe it's at least worth giving a couple of episodes to see if you like it. I'm looking forward to seeing how the rest of the show turns out.</span>
</div>
<div class="rating mt20 mb20 js-hidden" style="display: none;">
Reviewer’s Rating: <span class="num">7</span>
</div>
<div class="notice mb12 js-hidden" style="display: none;">What did you think of this review?</div>
<div class="reaction-box mb8 js-hidden" style="display: none;"><div class="btn-reaction js-btn-reaction nice ga-click" data-ga-click-type="review-anime-reaction-nice" data-id="482119" data-val="1" data-more="true">
Nice
<img src="https://cdn.myanimelist.net/images/emoticon/72x72/1f44d.png" alt="Nice"><span class="num">0</span></div><div class="btn-reaction js-btn-reaction loveit ga-click" data-ga-click-type="review-anime-reaction-loveit" data-id="482119" data-val="2" data-more="true">
Love it
<img src="https://cdn.myanimelist.net/images/emoticon/72x72/2764.png" alt="Love it"><span class="num">0</span></div><div class="btn-reaction js-btn-reaction funny ga-click" data-ga-click-type="review-anime-reaction-funny" data-id="482119" data-val="3" data-more="true">
Funny
<img src="https://cdn.myanimelist.net/images/emoticon/72x72/1f602.png" alt="Funny"><span class="num">0</span></div><div class="btn-reaction js-btn-reaction confusing ga-click" data-ga-click-type="review-anime-reaction-confusing" data-id="482119" data-val="4" data-more="false" style="display: none;">
Confusing
<img src="https://cdn.myanimelist.net/images/emoticon/72x72/1f928.png" alt="Confusing"><span class="num">0</span></div><div class="btn-reaction js-btn-reaction informative ga-click" data-ga-click-type="review-anime-reaction-informative" data-id="482119" data-val="5" data-more="true" style="display: none;">
Informative
<img src="https://cdn.myanimelist.net/images/emoticon/72x72/1f4a1.png" alt="Informative"><span class="num">0</span></div><div class="btn-reaction js-btn-reaction well-written ga-click" data-ga-click-type="review-anime-reaction-well-written" data-id="482119" data-val="6" data-more="true" style="display: none;">
Well-written
<img src="https://cdn.myanimelist.net/images/emoticon/72x72/1f4dd.png" alt="Well-written"><span class="num">0</span></div><div class="btn-reaction js-btn-reaction creative ga-click" data-ga-click-type="review-anime-reaction-creative" data-id="482119" data-val="7" data-more="true" style="display: none;">
Creative
<img src="https://cdn.myanimelist.net/images/emoticon/72x72/1f3a8.png" alt="Creative"><span class="num">0</span></div><div class="more_reviews js-more_reviews" style="display: none;"><a href="/profile/ProphetOfCringe/reviews" class="ga-click" data-ga-click-type="review-anime-reviewer-all-reviews"><i class="fas fa-angle-right"></i>More reviews by ProphetOfCringe (<span class="num">1</span>)
</a></div><div class="btn-showall js-btn-showall"><i class="fas fa-angle-right"></i>Show all</div></div><div class="bottom-navi"><div class="icon-reaction js-icon-reaction" data-id="482119" data-pagename="anime-review"></div><div class="readmore"><a href="#" class="ga-click js-readmore" data-ga-click-type="review-readmore"><i class="fas fa-angle-down"></i>Read more</a></div><div class="showless" style="display: none;"><a href="#" class="ga-click js-showless" data-ga-click-type="review-showless"><i class="fas fa-angle-up"></i>Show less</a></div><div class="open"><a href="https://myanimelist.net/reviews.php?id=482119" class="ga-click" data-ga-click-type="review-permalink"><i class="fas fa-arrow-up-right"></i>Open
</a></div><div class="gift"><a href="https://myanimelist.net/membership" class="ga-click" data-ga-click-type="gift-entry-anime-review" data-ga-click-param="rid:482119"><i class="fas fa-gift"></i>Gift
</a></div><div class="menu"><a href="#" class="btn-popup js-btn-popup"><i class="far fa-ellipsis-h"></i></a><div class="menu-block js-menu-block"><a href="https://myanimelist.net/dbchanges.php?go=reportreview&id=482119" class="link ga-click" data-ga-click-type="review-report">Report</a></div></div></div> </div>
</div>
</div>
<div class="review-element js-review-element" data-reactions='{"icon":["3"],"num":1,"count":["0","0","1","0","0","0","0"]}'><div class="titleblock mb4">
<a href="https://myanimelist.net/anime/41467/Bleach__Sennen_Kessen-hen" class="title ga-click" data-ga-click-type="review-anime-title">Bleach: Sennen Kessen-hen</a>
<small>(Anime)</small>
<a href="https://myanimelist.net/login.php?error=login_required&from=%2Freviews.php%3Ft%3Danime%26filter_check%3D%26filter_hide%3D%26preliminary%3Don%26spoiler%3Doff%26p%3D1" class="button_add ga-click"><span class="ga-click" data-ga-click-type="list-add-button" data-ga-click-param="aid:41467" data-work-type="anime" data-status="0" style="line-height: unset;">add</span></a>
<small>
(<a href="https://myanimelist.net/anime/41467/Bleach__Sennen_Kessen-hen/reviews" class="ga-click" data-ga-click-type="review-anime-title-all-reviews">All reviews</a>)
</small>
</div><div class="thumbbody mt8">
<div class="thumb">
<a href="https://myanimelist.net/profile/TJAyVA" class="ga-click" data-ga-click-type="review-anime-reviewer-pic">
<img src="https://cdn.myanimelist.net/images/userimages/14430671.jpg?t=1682756400" data-src="https://cdn.myanimelist.net/images/userimages/14430671.jpg?t=1682756400" class="lazyloaded" width="48">
</a>
</div>
<div class="body">
<div title="1:15 AM" class="update_at">Apr 29, 2023</div><div class="username">
<a href="https://myanimelist.net/profile/TJAyVA" class="ga-click" data-ga-click-type="review-anime-reviewer">TJAyVA</a>
</div><div class="tags"><div class="tag recommended btn-label js-btn-label" data-id="1" data-href="https://myanimelist.net/anime/41467/Bleach__Sennen_Kessen-hen/reviews"><i class="fas fa-star"></i>Recommended</div></div> <div class="text">
<div class="thumb-right">
<a href="https://myanimelist.net/anime/41467/Bleach__Sennen_Kessen-hen" class="ga-click" data-ga-click-type="review-anime-title-pic">
<img width="48" data-src="https://cdn.myanimelist.net/r/48x71/images/anime/1956/126621.jpg?s=5212c89c0dcbd95e3b34d90e2cf0a719" data-srcset="https://cdn.myanimelist.net/r/48x71/images/anime/1956/126621.jpg?s=5212c89c0dcbd95e3b34d90e2cf0a719 1x, https://cdn.myanimelist.net/r/96x142/images/anime/1956/126621.jpg?s=699b44a6a7c2980e84020735eb601d2e 2x" class="lazyload" />
</a>
</div>
Goated and absolutely deserves to be at the top of the list, only reason it's not at the top is because some salty prunes decided to review bomb this anime so it goes down the list cause nothing's allowed to top Fullmetal Alchemist apparently. Anyways, 10/10, Fullmetal Alchemist is good too, but y'all really need to touch grass.<br />
<br />
The music was great too with some of the classics being restrung into a more orchestral genre, and the animation is superb!<br />
<br />
Also the gore is fucking delicious! After years of being censored they go HAM with the deaths! And I'm talking Attack On Titan levels of gore! Heads
<span class="js-visible" style="margin-left: -4px;">...</span>
<span class="js-hidden" style="display: none;">being smashed like a pinata, torsos being sliced in half, and limbs being dissembled.</span>
</div>
<div class="rating mt20 mb20 js-hidden" style="display: none;">
Reviewer’s Rating: <span class="num">10</span>
</div>
<div class="notice mb12 js-hidden" style="display: none;">What did you think of this review?</div>
<div class="reaction-box mb8 js-hidden" style="display: none;"><div class="btn-reaction js-btn-reaction nice ga-click" data-ga-click-type="review-anime-reaction-nice" data-id="482117" data-val="1" data-more="true">
Nice
<img src="https://cdn.myanimelist.net/images/emoticon/72x72/1f44d.png" alt="Nice"><span class="num">0</span></div><div class="btn-reaction js-btn-reaction loveit ga-click" data-ga-click-type="review-anime-reaction-loveit" data-id="482117" data-val="2" data-more="true">
Love it
<img src="https://cdn.myanimelist.net/images/emoticon/72x72/2764.png" alt="Love it"><span class="num">0</span></div><div class="btn-reaction js-btn-reaction funny ga-click" data-ga-click-type="review-anime-reaction-funny" data-id="482117" data-val="3" data-more="true">
Funny
<img src="https://cdn.myanimelist.net/images/emoticon/72x72/1f602.png" alt="Funny"><span class="num">0</span></div><div class="btn-reaction js-btn-reaction confusing ga-click" data-ga-click-type="review-anime-reaction-confusing" data-id="482117" data-val="4" data-more="false" style="display: none;">
Confusing
<img src="https://cdn.myanimelist.net/images/emoticon/72x72/1f928.png" alt="Confusing"><span class="num">0</span></div><div class="btn-reaction js-btn-reaction informative ga-click" data-ga-click-type="review-anime-reaction-informative" data-id="482117" data-val="5" data-more="true" style="display: none;">
Informative
<img src="https://cdn.myanimelist.net/images/emoticon/72x72/1f4a1.png" alt="Informative"><span class="num">0</span></div><div class="btn-reaction js-btn-reaction well-written ga-click" data-ga-click-type="review-anime-reaction-well-written" data-id="482117" data-val="6" data-more="true" style="display: none;">
Well-written
<img src="https://cdn.myanimelist.net/images/emoticon/72x72/1f4dd.png" alt="Well-written"><span class="num">0</span></div><div class="btn-reaction js-btn-reaction creative ga-click" data-ga-click-type="review-anime-reaction-creative" data-id="482117" data-val="7" data-more="true" style="display: none;">
Creative
<img src="https://cdn.myanimelist.net/images/emoticon/72x72/1f3a8.png" alt="Creative"><span class="num">0</span></div><div class="more_reviews js-more_reviews" style="display: none;"><a href="/profile/TJAyVA/reviews" class="ga-click" data-ga-click-type="review-anime-reviewer-all-reviews"><i class="fas fa-angle-right"></i>More reviews by TJAyVA (<span class="num">2</span>)
</a></div><div class="btn-showall js-btn-showall"><i class="fas fa-angle-right"></i>Show all</div></div><div class="bottom-navi"><div class="icon-reaction js-icon-reaction" data-id="482117" data-pagename="anime-review"></div><div class="readmore"><a href="#" class="ga-click js-readmore" data-ga-click-type="review-readmore"><i class="fas fa-angle-down"></i>Read more</a></div><div class="showless" style="display: none;"><a href="#" class="ga-click js-showless" data-ga-click-type="review-showless"><i class="fas fa-angle-up"></i>Show less</a></div><div class="open"><a href="https://myanimelist.net/reviews.php?id=482117" class="ga-click" data-ga-click-type="review-permalink"><i class="fas fa-arrow-up-right"></i>Open
</a></div><div class="gift"><a href="https://myanimelist.net/membership" class="ga-click" data-ga-click-type="gift-entry-anime-review" data-ga-click-param="rid:482117"><i class="fas fa-gift"></i>Gift
</a></div><div class="menu"><a href="#" class="btn-popup js-btn-popup"><i class="far fa-ellipsis-h"></i></a><div class="menu-block js-menu-block"><a href="https://myanimelist.net/dbchanges.php?go=reportreview&id=482117" class="link ga-click" data-ga-click-type="review-report">Report</a></div></div></div> </div>
</div>
</div>
<div class="review-element js-review-element" data-reactions='{"icon":["1"],"num":1,"count":["1","0","0","0","0","0","0"]}'><div class="titleblock mb4">
<a href="https://myanimelist.net/anime/52173/Koori_Zokusei_Danshi_to_Cool_na_Douryou_Joshi" class="title ga-click" data-ga-click-type="review-anime-title">Koori Zokusei Danshi to Cool na Douryou Joshi</a>
<small>(Anime)</small>
<a href="https://myanimelist.net/login.php?error=login_required&from=%2Freviews.php%3Ft%3Danime%26filter_check%3D%26filter_hide%3D%26preliminary%3Don%26spoiler%3Doff%26p%3D1" class="button_add ga-click"><span class="ga-click" data-ga-click-type="list-add-button" data-ga-click-param="aid:52173" data-work-type="anime" data-status="0" style="line-height: unset;">add</span></a>
<small>
(<a href="https://myanimelist.net/anime/52173/Koori_Zokusei_Danshi_to_Cool_na_Douryou_Joshi/reviews" class="ga-click" data-ga-click-type="review-anime-title-all-reviews">All reviews</a>)
</small>
</div><div class="thumbbody mt8">
<div class="thumb">
<a href="https://myanimelist.net/profile/EDOSHINRATENSEI" class="ga-click" data-ga-click-type="review-anime-reviewer-pic">
<img src="https://cdn.myanimelist.net/images/userimages/11658087.jpg?t=1682753400" data-src="https://cdn.myanimelist.net/images/userimages/11658087.jpg?t=1682753400" class="lazyloaded" width="48">
</a>
</div>
<div class="body">
<div title="12:30 AM" class="update_at">Apr 29, 2023</div><div class="username">
<a href="https://myanimelist.net/profile/EDOSHINRATENSEI" class="ga-click" data-ga-click-type="review-anime-reviewer">EDOSHINRATENSEI</a>
</div><div class="tags"><div class="tag recommended btn-label js-btn-label" data-id="1" data-href="https://myanimelist.net/anime/52173/Koori_Zokusei_Danshi_to_Cool_na_Douryou_Joshi/reviews"><i class="fas fa-star"></i>Recommended</div></div> <div class="text">
<div class="thumb-right">
<a href="https://myanimelist.net/anime/52173/Koori_Zokusei_Danshi_to_Cool_na_Douryou_Joshi" class="ga-click" data-ga-click-type="review-anime-title-pic">
<img width="48" data-src="https://cdn.myanimelist.net/r/48x71/images/anime/1927/132758.jpg?s=67b4fe42a6e22cc47b24aedc2d3c465b" data-srcset="https://cdn.myanimelist.net/r/48x71/images/anime/1927/132758.jpg?s=67b4fe42a6e22cc47b24aedc2d3c465b 1x, https://cdn.myanimelist.net/r/96x142/images/anime/1927/132758.jpg?s=b3eff570951365fb901e896aeeb29ec1 2x" class="lazyload" />
</a>
</div>
A slice of life with a sprinkle of fantasy. People in this show can have certain inheritance that makes them special. Our main guy can control snow based on his emotions. I love this premise because there’s a lot that one can do with this power. <br />
<br />
Even though this anime did not take full advantage of its premise, I still had a sweet time with it. The main couple were both reserved people, but one can express his emotion through his snow ability. I love the dynamic where one character helped control the emotion of the other character. It made the other feel like the
<span class="js-visible" style="margin-left: -4px;">...</span>
<span class="js-hidden" style="display: none;">missing piece all along. With slow pacing, there were plenty of cute moments that slowly but surely built the couple’s relationship. They did not interact a lot, but each interaction was sweet and precious.<br />
<br />
It’s probably the most chill romcom anime of winter 2023, but it had all the sweet moments. 8-8.5/10</span>
</div>