-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy path008.hjson
821 lines (720 loc) · 34.8 KB
/
008.hjson
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
#hjson
/*--Ryuuganime HJSON Template--⋆\ /⋆----VALUE MARKUPS LEGEND----⋆\ /⋆-----NOTE MARKUPS LEGEND----⋆\
| | | [str] is a text value and | | |
| Created by @nattadasu | | number | | // is an important notes |
| | | [num] is a only-number value | | # is a definition notes |
| -------VERSION: 1.3-r-------- | | [boo] is a boolean markup | | |
| | | Consisted by "true" and | \⋆----------------------------⋆/
| Targeted on accessibility for | | "false" value | /⋆------ADDITIONAL NOTES------⋆\
| non-developer to contribute | | [arr] is an array value. It | | |
| on filling related anime | | is a combination of | | ''' |
| with some 'helpful' guides | | strings, integrer, objects | | This is a multi |
| on each of values in as a | | in one value | | lines text value |
| comment | | [obj] is an object value. | | ''' |
| | | Signifies that this value | | is a syntax that allows user |
\⋆-----------------------------⋆/ | has several values inside | | to add multi-lines text/ |
/⋆----STRINGS MARKUPS LEGEND---⋆\ | the value itself | | string without append \n |
| | | | | pointer |
| <url>: a string contains URL | \⋆----------------------------⋆/ | |
| or URI link | // First guide: \⋆----------------------------⋆/
| <arb>: this value that can be | // JSON is easy for humans to read and write... in theory. In
| changed to array if object | // practice JSON gives us plenty of opportunities to make
| on a value is more than one | // mistakes without even realizing it.
| <nab>: the value can be | // Hjson is a syntax extension to JSON. It's NOT a proposal to
| "deleted" and changed to | // replace JSON or to incorporate it into the JSON spec
| null, if possible | // itself. It's intended to be used like a user interface for
| <nbl>: this value can not be | // humans, to read and edit before passing the JSON data to
| "deleted" or changed to | // the machine.
| null value because it is | // Comma (,) and quotation marks on the end of value is optional
| essential for the file | // on HJSON.
| itself | // For easier on filling, see on hjson/000/014.hjson or latest
| | // for example.
\⋆-----------------------------*/ // See https://hjson.github.io/ for HJSON tl;dr documentations.
{
# $schema [str] <nbl> <url>
# = Very not recommended to modify this configuration value if not having any knowledge in JSON!
$schema: ../../schemas/entry.json
// Optional value, tick a comment syntax of above value, and untick value below.
//$schema: https://raw.githubusercontent.com/ryuuganime/ryuuganime-db/master/schemas/entry.json
# title [obj] <nbl>
# title of serial... in several languages. Based on ICU locales.
title:
{
# native [str] <nbl>
# = Serial title in native (canonical) language based on origin of studio and/or airing first.
native: 君の膵臓をたべたい
# en_Latn [str] <nbl>
# = Serial title in romanized text. Required for main title on entry list.
en_Latn: Kimi no Suizou wo Tabetai
# ar_001 [str] <nab>
# = Serial title in Modern Standard/Written Arabic (العربية الفصحى).
// REGEX: ^[\w\s\S\p{L}{Arabic}]+$
ar_001: اريد اكل بنكرياسك
# id_ID [str] <nab>
# = Serial title in Indonesian (un/official)
// REGEX: ^[\w\s\S]+$
id_ID: Aku Ingin Makan Pankreasmu
it_IT: Voglio mangiare il tuo pancreas
# en_US [str] <nab>
# = Serial title in English.
// REGEX: ^[\w\s\S]+$
en_US: I want to eat your pancreas
# ja_JP [str] <nab>
# = Serial title in Japanese.
// REGEX: ^[一-龠ぁ-ゔァ-ヴーa-zA-Z0-9々〆〤\w\s\S]+$
ja_JP: 君の膵臓をたべたい
# de_DE [str] <nab>
# = Serial title in German (un/official).
// REGEX: ^[\w\s\SöäüÖÄÜß]+$
de_DE: I want to eat your pancreas
# ko_KR [str] <nab>
# = Serial title in South/North Korean.
// REGEX: ^[가-ᄀ-ᇿ-ꥠ-ힰ-\w\s\S]+$
ko_KR: 너의 췌장을 먹고싶어
# fr_FR [str] <nab>
# = Serial title in French (or other accent).
// REGEX: ^[\w\s\S«»À-Üà-øoù-ÿŒœ]+$
fr_FR: Je veux manger ton pancréas
# pt_PT [str] <nab>
# = Serial title in Portuguese.
// REGEX: ^[\w\s\Sáâãàçéêíóôõú]+$
pt_PT: Eu Quero Comer o Teu Pâncreas
# ru_RU [str] <nab>
# = Serial title in Russian (un/official).
// REGEX: ^[\w\s\SЀ-ӿ]+$
ru_RU: Я хочу съесть твою поджелудочную
# es_ES [str] <nab>
# = Serial title in Spanish (or other accent).
// REGEX: ^[\w\s\SÀ-ÿ]+$
es_ES: Quiero comerme tu páncreas
# zh_Hans [str] <nab>
# = Serial title in Simplified Chinese.
// REGEX: ^[\w\s\S\p{Lo}{Han}]+$
zh_Hans: 我想吃掉你的胰脏
# zh_Hant [str] <nab>
# = Serial title in Traditional Chinese.
// REGEX: ^[\w\s\S\p{Lo}{Han}]+$
zh_Hant: 我想吃掉你的胰臟
# vi_VN [str] <nab>
# = Serial title in Vietnamese.
// REGEX: ^[\w\s\S\p{L}{VN}]+$
vi_VN: Tớ Muốn Ăn Tụy Của Cậu
}
# backdrop [str] <url> <nbl>
# = A backdrop/background image URL of serial. See Doc/Wiki for more information.
// FORMAT: URI, REGEX: ^(https?)\:\/\/
backdrop: https://artworks.thetvdb.com/banners/movies/16877/backgrounds/16877.jpg
# visualKey [str] <url> <nbl>
# = A visual key/poster image URL of serial. See Doc/Wiki for more information.
// FORMAT: URI, REGEX: ^(https?)\:\/\/
visualKey: https://image.tmdb.org/t/p/original/aUxbkULgC3fpdwbdiuqKJLyfr4R.jpg
# synopsis [obj] <nbl>
# = A synopsis/plot of story of serial in several languages.
synopsis:
{
# ar_001 [str] <nab>
# = Serial synopsis in Modern Standard/Written Arabic (العربية الفصحى). See TVDB, ArabSama, or
# Wikipedia for Arabic synopsis.
// MINLENGTH: 20, REGEX: [\w\s\S\p{L}{Arabic}]+
ar_001: '''تدور احداث هذا الفيلم حول فتى منعزل يحب قراءة الكتب , ذات يوم وبينما بطلنا يوجد في المستشفى وجد مذكرة على الارض تحمل عنوان التعايش مع الموت وتعود هذه المذكرة لساكورا ياماوتشي ذات الشعبية الكبيرة حيث كانت هذه الاخيرة تخفي اصابتها بمرض اوقف عمل البنكرياس وجعلها تنتظر الموت . .........تابعوا الفيلم لمعرفة المزيد'''
# id_ID [str] <nab>
# = Serial synopsis in Indonesian. See Otak Otaku, or others Indonesian fansub, fanstream, and
# fanshare for synopsis.
// MINLENGTH: 20, REGEX: [\w\s\S]+
id_ID: '''Suatu hari, seorang murid SMA menemukan sebuah buku di rumah sakit berjudul "Jurnal Penyakit Koeksistensi". Itu adalah buku harian milik teman kelasnya, Sakura Yamauchi yang ditulis secara diam-diam. Ini adalah kisah seorang gadis yang menderita penyakit dan harus menghadapi kenyataan hidup yang kejam...'''
it_IT: '''Uno studente delle superiori trova per caso il diario di una compagna di classe, Sakura Yamauchi. Ma quel diario custodisce un segreto perché Sakura soffre di una gravissima malattia pancreatica. Nonostante i due abbiano personalità agli antipodi, quel tremendo segreto li avvicinerà sempre più.'''
# en_US [str] <nab>
# = Serial synopsis in Inggris. See Anime News Network, AniDB, Kitsu, or MyAnimeList for
# synopsis.
// MINLENGTH: 20, REGEX: [\w\s\S]+
en_US: '''The aloof protagonist: a bookworm who is deeply detached from the world he resides in. He has no interest in others and is firmly convinced that nobody has any interest in him either. His story begins when he stumbles across a handwritten book, titled "Living with Dying." He soon identifies it as a secret diary belonging to his popular, bubbly classmate Sakura Yamauchi. She then confides in him about the pancreatic disease she is suffering from and that her time left is finite. Only her family knows about her terminal illness; not even her best friends are aware. Despite this revelation, he shows zero sympathy for her plight, but caught in the waves of Sakura's persistent buoyancy, he eventually concedes to accompanying her for her remaining days.
As the pair of polar opposites interact, their connection strengthens, interweaving through their choices made with each passing day. Her apparent nonchalance and unpredictability disrupts the protagonist's impassive flow of life, gradually opening his heart as he discovers and embraces the true meaning of living.'''
# ja_JP [str] <nab>
# = Serial synopsis in Japanese. See Annict or The TVDB for synopsis.
// MINLENGTH: 20, REGEX: [一-龠ぁ-ゔァ-ヴーa-zA-Z0-9々〆〤\w\s\S]+
ja_JP: '''「君の膵臓をたべたい」……主人公である「僕」が病院で偶然拾った1冊の「共病文庫」というタイトルの文庫本。それは「僕」のクラスメイトである山内桜良(やまうち さくら)が綴っていた秘密の日記帳であり、彼女の余命が膵臓の病気により、もう長くはないことが記されていた。「僕」はその本の中身を興味本位で覗いたことにより、身内以外で唯一桜良の病気を知る人物となる。
「山内桜良の死ぬ前にやりたいこと」に付き合うことにより、「僕」、桜良という正反対の性格の2人が、互いに自分には欠けている部分にそれぞれ憧れを持ち、次第に心を通わせていきながら成長していく。そして「僕」は「人を認める人間に、人を愛する人間になること」を決意。桜良は、恋人や友人を必要としない「僕」が、初めて関わり合いを持ちたい人に自分を選んでくれたことにより「初めて私自身として必要とされている、初めて私が、たった一人の私であると思えた」と感じていく。
しかし、余命を全うすることなく、4週間の入院治療から解放されたその日に桜良は通り魔に刺されて亡くなってしまう。'''
# de_DE [str] <nab>
# = Synopsis in German. See aniSearch.de or The TVDB for synopsis.
// MINLENGTH: 20, REGEX: [\w\s\SöäüÖÄÜß]+
de_DE: '''Haruki Shiga ist ein unsozialer Einzelgänger, der seine Zeit lieber mit Büchern verbringt und in seiner Klasse kein besonders hohes Ansehen genießt. Sakura Yamauchi ist lebensfroh und charakterstark und mit ihrer offenen und sonnigen Persönlichkeit allseits beliebt. Die beiden könnten unterschiedlicher kaum sein und doch werden sie eines Tages unzertrennlich miteinander verbunden. Als Haruki im Krankenhaus darauf wartet, dass er aufgerufen wird, findet er ein kleines Buch – »Leben mit dem Tod« –, ein Tagebuch, dass das tägliche Leben eines sterbenden Menschen beschreibt. Es dauert nicht lang, bis die Besitzerin des Buches auftaucht: seine Klassenkameradin Sakura. Sakura leidet an einer Bauchspeicheldrüsenerkrankung und obwohl medizinische Fortschritte ihr ein fast normales Leben ermöglichen, wird sie bald sterben. Das ist allerdings etwas, das sie all ihren Freunden bisher verheimlicht hat, denn was sie in dieser letzten Zeit auf Erden braucht, ist kein Mitleid, sondern echte Normalität – Normalität, die sie in Haruki findet, der nun von einem »einfachen Klassenkameraden« zu einem »Klassenkameraden, der mein Geheimnis kennt« wird.
So wird Haruki von Sakura mitgerissen und umso mehr Zeit die beiden miteinander verbringen, umso mehr finden sie sich gefangen in einem Sturm aus Gefühlen, die sie sich selbst nicht erklären können. »Freundschaft«? »Liebe«? Derart triviale Worte reichen nicht, um die Beziehung der beiden zu beschreiben. »Lass uns die Welt genießen, bis ich sterbe, okay?« – das sind ihre Worte und so bricht der Freigeist Sakura Stück für Stück Harukis harte Schale und er beginnt die Welt mit anderen Augen zu sehen …'''
# ko_KR [str] <nab>
# = Synopsis in South Korean. See Watcha, Namu, The TVDB, or Wikipedia for synopsis.
// MINLENGTH: 20, REGEX: [가-ᄀ-ᇿ-ꥠ-ힰ-\w\s\S]+
ko_KR: '''먼지 뿌연 도서실, 낡은 책장에 꽂힌 서적들의 순번, 조용히 책을 읽으며 생각에 잠기는 걸 좋아하는 ‘나’는 익숙한 것에서만 위안을 찾는 평범한 고등학생이다. 무료한 일상을 보내던 나는 병원에서 낡은 소파 구석에 놓인 공책 한 권을 발견한다. ‘췌장⋯⋯ 죽는다⋯⋯ 공병(共病)문고?’ 호기심을 불러일으키는 단어에 마음을 빼앗긴 내 앞에 예쁘고 명랑한 사쿠라가 나타나 공책이 자신의 것이라고 말한다. 당황한 나, 그리고 환한 미소를 짓는 사쿠라. 그녀와 나는 점점 비밀을 공유하는 친구 그 이상의 관계로 맺어지기 시작하는데⋯⋯'''
# fr_FR [str] <nab>
# = Synopsis in French. Other accents are allowed. See Nautiljon or The TVDB for synopsis.
// MINLENGTH: 20, REGEX: [\w\s\S«»À-Üà-øoù-ÿŒœ]+
fr_FR: '''Shiga est un lycéen introverti qui ne semble trouver du réconfort que dans la littérature. Sa vie monotone bascule le jour où, en se rendant à l'hôpital, il découvre dans la salle d'attente le journal intime de Yamauchi Sakura, sa camarade de classe. Cette dernière lui révèle alors qu'elle est atteinte d'une rare déficience du pancréas et que ses jours sont comptés.
Etant la seule personne du lycée au courant pour la maladie de la jeune fille, Shiga décide de garder le secret et d'en rester là avec elle. Mais sans qu'il ne s'en rende compte, Sakura et lui multiplient le temps passé ensemble ; et bien que leurs personnalités soient comme le jour et la nuit, chacun trouve en l'autre un précieux soutien. Ainsi Shiga décide de s'ouvrir à elle pour l'accompagner dans ses derniers jours.'''
# pt_PT [str] <nab>
# = Synopsis in Portuguese. Other accents are allowed. See The TVDB for synopsis.
// MINLENGTH: 20, REGEX: [\w\s\Sáâãàçéêíóôõú]+
pt_PT: '''O diário pertence à sua colega de classe, uma menina chamada Sakura Yamauchi, que revela estar a sofrer de uma doença terminal no seu pâncreas e que só tem alguns meses para viver. Sakura explica que o protagonista é a única pessoa além da sua família que conhece a sua condição. O protagonista promete manter o segredo de Sakura. Apesar das suas personalidades completamente opostas, o protagonista decide estar junto de Sakura durante os seus últimos meses.'''
# ru_RU [str] <nab>
# = Synopsis in Russian. See Shikimori, Kinopoisk, ru.MyShows.me, or Wikipedia for synopsis.
// MINLENGTH: 20, REGEX: [\w\s\SЀ-ӿ]+
ru_RU: '''Одним прекрасным днём ученик старшей школы находит чей-то личный дневник, подписанный как «Дневник болезни». Вскоре выясняется, что дневник этот принадлежит Сакуре Ямаути, однокласснице главного героя. Прочтя его, Харуки Сига узнаёт, что девушка страдает смертельной болезнью — её поджелудочная железа перестала работать. Чтобы поддержать её в этой нелёгкой ситуации, юноша решает подружиться с Сакурой, несмотря на их совершенно разные характеры.'''
# es_ES [str] <nab>
# = Synopsis in Spanish Spain. Other accents are allowed. See The TVDB for synopsis.
// MINLENGTH: 20, REGEX: [\w\s\SÀ-ÿ]+
es_ES: '''El compañero de clases simplón es un chico que no destaca en nada, no se relaciona con nadie. Sólo esta interesado en el mundo que le muestran los libros que lee, hasta que va al hospital debido a que fue sometido a una operación de apéndice, por lo que ahora va a un chequeo de rutina.
Mientras espera, encuentra un libro titulado “Libro de convivencia con una enfermedad”. Lo comienza a leer y parece que es el diario de alguna persona que sufre de cáncer de páncreas y probablemente le quede muy poco tiempo de vida. Después de leer, una chica aparece diciendo "eso es mío" y no es nada más y nada menos que Sakura Yamauchi, la chica más popular de su clase. Así, se convierte en el compañero de clases que sabe su secreto y la acompañará hasta el día de su muerte.'''
# zh_Hans [str] <nab>
# = Synopsis in Simplified Chinese. See Douban, The TVDB, or Wikipedia for synopsis, or
# translate from zh_Hant (Traditional Chinese) using extension.
// MINLENGTH: 20, REGEX: [\w\s\S\p{Lo}{Han}]+
zh_Hans: '''“没有名字的我,没有未来的她”
对他人毫无兴趣,总是独自一人读书的高中生“我”。这样的“我”有一天,偶然捡到一册写着《共病文库》的文库本。那是,天真烂漫的班上人气王·山内樱良私下记录的日记本。里面记载着她身患胰脏的疾病,已经时日无多……。
隐藏自己的疾病度过日常的樱良,与知晓其秘密的“我”。
——两人的距离,还没有名字。'''
# zh_Hant [str] <nab>
# = Synopsis in Traditional Chinese. See Douban, The TVDB, or Wikipedia for synopsis, or
# translate from zh_Hans (Simplified Chinese) using extension.
// MINLENGTH: 20, REGEX: [\w\s\S\p{Lo}{Han}]+
zh_Hant: '''沒有名字的少年主角和沒有未來的患者女主角,他在撿到她的日記《共病文庫》後,在班上原沒有交集的兩人,生命自此有了改變。對少年來說,他想要患有胰臟疾病的少女恢復健康,對少女來說,她想要正常的人生與他一起活著。個性相反的兩人相遇後,情感得到互補。'''
# vi_VN [str] <nab>
# = Synopsis in Vietnamese.
// MINLENGTH: 20, REGEX: [\w\s\S\p{L}{VN}]+
vi_VN: '''Câu chuyện trong tiểu thuyết kể dưới góc nhìn của một nhân vật chính giấu tên. Ngày nọ, cậu tìm được một cuốn nhật ký trong bệnh viện. Quyến nhật ký này là của cô bạn cùng lớp Sakura Yamauchi của cậu, và qua đó cậu biết được rằng cô bạn của mình đang trải qua căn bệnh tuyến tụy giai đoạn cuối và chỉ còn sống được vài tháng mà thôi. Sakura đã nói rằng cậu là người duy nhất ngoài gia đình cô biết về sự thật này. Cậu đã hứa giữ bí mật cho Sakura. Dù tính cách của họ hoàn toàn trái ngược nhau, nhân vật chính quyết định sẽ ở bên cạnh Sakura trong những ngày tháng cuối đời của cô.'''
}
# information [obj] <nbl>
# = Is a collection of information about serial.
information:
{
# synonyms [obj] <nbl> => [arr] <nab>
# = Synonym, other titles that well-known on the public.
synonyms:
{
en_Latn: [
KimiSui
Kimi no Suizō wo Tabetai
]
ar_001: null
hu_HU: null
he_IL: null
id_ID: null
en_US: [
Let Me Eat Your Pancreas
]
ja_JP: null
de_DE: null
ko_KR: null
fr_FR: null
pt_PT: null
ru_RU: [
Хочу съесть твою поджелудочную железу
]
es_ES: [
Vull menjar-me el teu pàncrees
]
zh_Hans: null
zh_Hant: null
vi_VN: null
}
# type [obj] <nbl> => [str] <nbl>
# = Serial type, is it TV, ONA, OVA/OAD, Special, or Movie
type:
{
// Allowed values are:
// TV, ONA, OVA, OAD, Special, Movie, Music, and Unknown
en_US: Movie
// Allowed values are:
// Serial TV, ONA, OVA, OAD, Spesial, Film, Musik, and Tidak Diketahui
id_ID: Film
}
# status [obj] > [str] <nbl>
# = Describes the serial broadcast status.
status:
{
// Allowed values are:
// Aired, Airing, Planned, TBA, and Unknown
en_US: Aired
// Allowed values are:
// Ditayangkan, Mengudara, Direncanakan, Akan Diumumkan, and Tidak Diketahui
id_ID: Ditayangkan
}
# serialGenre [obj]
# = Is genre(s) of serial. See the wiki for more information.
serialGenre:
{
# en_US [arr] <nbl>
# = Serial genre in English.
// Allowed values are:
// Action, Adventure, Comedy, Crime, Documentary, Drama, Fantasy, History, Horror, Mature,
// Music, Mystery, Psychological, Romance, Science Fiction, Slice of Life, Sport,
// Supernatural, Thriller, War
en_US:
[
Drama
Romance
Slice of Life
]
# id_ID [arr] <nbl>
# = Serial genre in Indonesian.
// Allowed values are:
// Aksi, Petualangan, Komedi, Kriminalitas, Dokumentasi, Drama, Fantasi, Sejarah, Horror,
// Dewasa, Musik, Misteri, Psikologis, Romansa, Fiksi Ilmiah, Potongan Kehidupan,
// Olahraga, Supernatural, Thriller, Peperangan
id_ID:
[
Drama
Romansa
Potongan Kehidupan
]
}
# serialTags [obj]
# = Represents serial specific tags/content. Similar to the serialGenre, but usually more
# focused on content, storyline, or themes. But, all of serialGenres value will be ignored if
# present on serialTags. See the wiki for more information.
serialTags:
{
# en_US [arr] <nbl>
# = Serial tags in English.
en_US:
[
Seinen
Illness
School Life
Tragedy
Philosophy
School
Slow When It Comes To Love
]
# id_ID [arr] <nbl>
# = Serial tags in Indonesian.
id_ID:
[
Seinen
Penyakit
Kehidupan Sekolah
Tragedi
Filosofi
Sekolah
Lamban Saat Mencintai
]
}
# releaseSeason [obj] <nbl> => [str] <nbl>
# = Season of serial releases.
releaseSeason:
{
// Allowed values are
// Winter, Spring, Summer, Fall, and Unknown
en_US: Summer
// Allowed values are
// Dingin, Semi, Panas, Gugur, and Tidak Diketahui
id_ID: Panas
// Allowed values are
// 冬, 春, 夏, 秋, and 不明
ja_JP: 夏
// Allowed values are
// 겨울, 봄, 여름, 가을, and 알
ko_KR: 여름
// Allowed values are
// 冬天, 春天, 夏天, 秋天, and 未知
zh_Hans: 夏天
// Allowed values are
// 冬天, 春天, 夏天, 秋天, and 未知
zh_Hant: 夏天
}
# releaseYear [num] <nbl>
# = The year of the serial release, using a integrer/numeral format.
releaseYear: 2018
# episode [num] <nbl>
# = Total episodes of serial. If unknown, fill null.
episode: 1
# releaseDate [str]
# = Start date of serial release, using YYYY-MM-DD format. If unknown, fill null.
releaseDate: 2018-09-01
# endDate [str]
# = End date of serial release, using YYYY-MM-DD format. If unknown, fill null.
endDate: 2018-09-01
# duration [num] <nab>
# = Duration per serial episode, using minute format. If unknown, fill null.
duration: 108
# totalDuration [num] <nab>
# = The total duration of the series, using the minute format. If unknown, fill null.
totalDuration: 108
# studio [str] <arb> <nab>
# = Studio producing series.
studio: Studio VOLN
# rating [str] <nab>
# = Broadcast content rating of serial. See the wiki for more information.
// Allowed values are: G0+, PS2+, PG7+, PG13+, R18+, GU21+, and null.
rating: PG13+
# isNsfw [boo] <nbl>
# = Merupakan penanda apabila serial tidak aman (NSFW). Preset awal adalah
# false, yakni aman.
// Argumen yang diperbolehkan ialah
// true dan false
isNsfw: false
# adaptation [obj] > [str] <arb> <nab>
# = Is the original adaptation of the show.
adaptation:
{
// Allowed values are
// Original, Comic, Manga, Manhwa, Manhua, Webtoon, Doujin, Novel, Game, Music, Drama,
// 4-koma, Fairy Tale, and null
en_US: Novel
// Allowed values are
// Orisinal, Komik, Manga, Manhwa, Manhua, Webtoon, Doujin, Novel, Gim, Musik, Drama,
// 4-panel, Dongeng, and null
id_ID: Novel
}
# country [str] <nbl>
# = Country of origin of serial. There are no country restrictions here.
country:
{
en_US: Japan
id_ID: Jepang
}
# officialWebsite [str] <url> <nab>
# = Links to official website of current entry.
officialWebsite: http://www.kimisui-anime.com/
# promotionalVideos [arr] <nab> > [str] <url>
# = List of promotional videos of current entry.
promotionalVideos: [
https://youtu.be/2NXip6ix5hE
]
# producers [arr] <nab> > [str]
# = Producers that involved to current entry/project
producers: [
Aniplex
]
}
# scores [obj] > [str]/[num] <nab>
// When the entry is empty or not found in specified site, fill null on id/slug/code/base64/url
// and on the score.
scores:
{
// https://anidb.net
aniDB:
{
# id [num]
# = Is a serial id on the respective website. Can be taken from URL, or inspecting via poster
# image URI. See Wiki or ask to developer for more information.
id: 13363
score: 8.12
}
// https://anilist.co
AniList:
{
# id [num]
# = Is a serial id on the respective website. Can be taken from URL, or inspecting via poster
# image URI. See Wiki or ask to developer for more information.
id: 99750
score: 83
}
// https://anime-planet.com
AnimePlanet:
{
# url [str] <url>
# = URL of entry on the related website.
url: https://www.anime-planet.com/anime/i-want-to-eat-your-pancreas
# id [num]
# = Is a serial id on the respective website. Can be taken from URL, or inspecting via poster
# image URI. See Wiki or ask to developer for more information.
id: 9068
score: 4.534
}
ANN:
{
# id [num]
# = Is a serial id on the respective website. Can be taken from URL, or inspecting via poster
# image URI. See Wiki or ask to developer for more information.
id: 20388
score: 8.065
}
// https://anisearch.com
aniSearch:
{
# url [str] <url>
# = URL of entry on the related website.
url: https://www.anisearch.com/anime/12730,kimi-no-suizou-o-tabetai
# id [num]
# = Is a serial id on the respective website. Can be taken from URL, or inspecting via poster
# image URI. See Wiki or ask to developer for more information.
id: 12730
score: 88
}
// https://annict.com < Gunakan VPN sebelum memasuki website ini.
Annict:
{
# id [num]
# = Is a serial id on the respective website. Can be taken from URL, or inspecting via poster
# image URI. See Wiki or ask to developer for more information.
id: 5401
score: null
}
// https://imdb.com
IMDb:
{
# code [str] <nab>
# = Similar to ID, but the only difference is there is an additional identification character
# that used by IMDB.
code: tt7236034
score: 7.9
}
// https://kinopoisk.ru
KinoPoisk:
{
# id [num]
# = Is a serial id on the respective website. Can be taken from URL, or inspecting via poster
# image URI. See Wiki or ask to developer for more information.
id: 1048908
score: 7.751
}
// https://kitsu.io
Kitsu:
{
# slug [str]
# = Is a human readable version of the linked index URL.
slug: kimi-no-suizou-wo-tabetai
# id [num]
# = Is a serial id on the respective website. Can be taken from URL, or inspecting via poster
# image URI. See Wiki or ask to developer for more information.
id: 13723
score: 82.56
}
// https://livechart.me
LiveChart:
{
# id [num]
# = Is a serial id on the respective website. Can be taken from URL, or inspecting via poster
# image URI. See Wiki or ask to developer for more information.
id: 2829
score: 8.94
}
// https://myanimelist.net
MyAnimeList:
{
# id [num]
# = Is a serial id on the respective website. Can be taken from URL, or inspecting via poster
# image URI. See Wiki or ask to developer for more information.
id: 36098
score: 8.60
}
// https://en.myshows.me/
MyShows:
{
# id [num]
# = Is a serial id on the respective website. Can be taken from URL, or inspecting via poster
# image URI. See Wiki or ask to developer for more information.
id: null
score: null
}
// http://nautiljon.com/
Nautiljon:
{
# url [str] <url>
# = URL of entry on the related website.
url: https://www.nautiljon.com/animes/kimi+no+suizo+wo+tabetai.html
score: 9.24
}
// https://notify.moe/
Notify:
{
# base64 [str]
# = This is a unique numbering system that Notify.moe uses on their website
base64: 3RRI2FiiR
score: 8.67
}
// http://otakotaku.com/
OtakOtaku:
{
# id [num]
# = Is a serial id on the respective website. Can be taken from URL, or inspecting via poster
# image URI. See Wiki or ask to developer for more information.
id: 1047
score: 9.71
}
// http://shikimori.org/
Shikimori:
{
# id [num]
# = Is a serial id on the respective website. Can be taken from URL, or inspecting via poster
# image URI. See Wiki or ask to developer for more information.
id: 36098
moved: true
newId: z36098
score: 8.6
}
// https://simkl.com
SIMKL:
{
# id [num]
# = Is a serial id on the respective website. Can be taken from URL, or inspecting via poster
# image URI. See Wiki or ask to developer for more information.
id: 708497
isAnime: true
score: 8.6
}
// https://www.themoviedb.org/
TMDB:
{
# url [str] <url>
# = URL of entry on the related website.
url: https://www.themoviedb.org/movie/504253
# id [num]
# = Is a serial id on the respective website. Can be taken from URL, or inspecting via poster
# image URI. See Wiki or ask to developer for more information.
id: 504253
score: 82
}
// https://trakt.tv/
Trakt:
{
# url [str] <url>
# = URL of entry on the related website.
url: https://trakt.tv/movies/i-want-to-eat-your-pancreas-2018
# id [num]
# = Is a serial id on the respective website. Can be taken from URL, or inspecting via poster
# image URI. See Wiki or ask to developer for more information.
id: 351528
score: 82
}
// https://www.tvtime.com/en
TVTime:
{
# id [num]
# = Is a serial id on the respective website. Can be taken from URL, or inspecting via poster
# image URI. See Wiki or ask to developer for more information.
id: 16877
score: null
}
}
# updatedDate [str] <nbl>
# = Date and Time of data collection, information and score related entries. Uses ISO 8601
# format. See the guide below for more information.
// Procedure for filling data
// Format: YYYY-MM-DDThh:mm:ssTZD
// Which:
// YYYY = year (2020)
// MM = month (12)
// DD = date (21)
// hh = hour, format 24 hour (22)
// mm = minute (45)
// ss = second (33)
// TZD = time zone designator based on UTC (WIB: +07:00)
// so, 2020-12-21T22:45:33+07:00 is valid.
// WIB = +07:00, WITA = +08:00, WIT = +09:00
updatedDate: 2020-05-25T02:16:16+07:00
# streamLinks [obj] <nbl>
# = Lists of official streaming sites.
streamLinks:
{
Abematv: null
AdultSwim: null
AISPlay: null
All4: null
AniMe: null
AnimeDigitalNetwork: null
AnimeLab: null
AnimeLog: null
AnimeOnDemand: null
AnimePlanet: null
animeteleto: null
AniOne: null
ANIPLUS: null
AniPlusAsia: null
AsianCrush: null
BahamutAnimeCrazy: null
BandaiChannel: null
BandaiSpirits: null
bilibili: null
Coalise: null
ComicFestaAnimeZone: null
ConTV: null
Coolmic: null
Crunchyroll: null
dAnimeStore: null
DMM: null
FOD: http://fod.fujitv.co.jp/s/genre/movie/serc016/
Funimation: null
Genflix: null
GundamInfo: null
Gyao: null
HIDIVE: null
HOOQ: null
Hulu: null
iflix: null
iQIYI: null
JapaneseAnimatedFilmClassic: null
Mangas: null
MBSDougaizm: null
MidnightPulp: null
MuseAsia:
{
en_001: null
vi_VN: null
ms_MY: null
th_TH: null
zh_Hant_HK: null
zh_Hant_TW: null
}
Netflix: null
NicoNico: null
PrimeVideo: null
RetroCrush: null
SelectaVision: null
Sushiroll: null
Telasa: null
TencentVideo: null
TVNOW: null
Vimeo: null
VIZ: null
VRV: null
VVVVID: null
Wakanim:
{
fr: null
sc: null
de: null
ru: null
}
WeTV: null
YamatoAnimation: null
YouTube:
{
link: null
isChannel: false
}
}
# signature
# = Is an object that provides information regarding the contributors to the entry.
signature:
{
# name [str] <nbl>
# = Your name, can use pseudonym (pen name).
name: Natsu Tadama
# username [str] <nbl>
# = Your username on GitHub
username: @nattadasu
# discordId [num] <nbl>
# = This is your unique user ID on Discord. By default, the ID uses from the Ryuuganime server
# ID: 594442535615725579
discordId: 384089845527478300
# submissionDateTime [str] <nbl>
# = Date and time before submission (commit/push). Uses ISO 8601 format. See the guide below
# for more information.
// Procedure for filling data
// Format: YYYY-MM-DDThh:mm:ssTZD
// Which:
// YYYY = year (2020)
// MM = month (12)
// DD = date (21)
// hh = hour, format 24 hour (22)
// mm = minute (45)
// ss = second (33)
// TZD = time zone designator based on UTC (WIB: +07:00)
// so, 2020-12-21T22:45:33+07:00 is valid.
// WIB = +07:00, WITA = +08:00, WIT = +09:00
submissionDateTime: 2020-05-25T02:31:11+07:00
# sign [str][num] <nbl>
# = These are the unique characters that contributors use to "sign" data. Can use characters
# other than alphabets and numbers, or use encryption such as Base64.
sign: RGlnaXRhbGx5IFNpZ25lZCBieSBOYXRzdSBUYWRhbWEgQCBBY2VoLCBJbmRvbmVzaWE=
}
}