From 545d8a3473823f0a86cad3c177dbbb4ebb794a75 Mon Sep 17 00:00:00 2001 From: Factiven Date: Mon, 17 Apr 2023 13:33:37 +0700 Subject: Snapshot Moopa v3.2 --- components/hero/content.js | 4 +- components/hero/searchAni.js | 64 -- components/hero/trending.js | 120 -- components/loadingScreen.js | 35 - components/media/chisato.js | 83 -- components/media/sticker.js | 34 - components/navbar.js | 163 ++- components/test/dataAni.js | 2520 ------------------------------------------ components/test/player.js | 11 - components/underConst.js | 22 - components/videoPlayer.js | 7 +- 11 files changed, 113 insertions(+), 2950 deletions(-) delete mode 100644 components/hero/searchAni.js delete mode 100644 components/hero/trending.js delete mode 100644 components/loadingScreen.js delete mode 100644 components/media/chisato.js delete mode 100644 components/media/sticker.js delete mode 100644 components/test/dataAni.js delete mode 100644 components/test/player.js delete mode 100644 components/underConst.js (limited to 'components') diff --git a/components/hero/content.js b/components/hero/content.js index 96f49fd..348e1ab 100644 --- a/components/hero/content.js +++ b/components/hero/content.js @@ -35,7 +35,7 @@ export default function Content({ ids, section, data }) { @@ -85,7 +85,7 @@ export default function Content({ ids, section, data }) { diff --git a/components/hero/searchAni.js b/components/hero/searchAni.js deleted file mode 100644 index 390165a..0000000 --- a/components/hero/searchAni.js +++ /dev/null @@ -1,64 +0,0 @@ -import React from "react"; -import { useQuery, gql } from "@apollo/client"; -import Link from "next/link"; - -const SearchAni = ({ searchQuery }) => { - const ANIME_QUERY = gql` - query ( - $id: Int - $page: Int - $perPage: Int - $search: String - $sort: [MediaSort] - ) { - Page(page: $page, perPage: $perPage) { - pageInfo { - total - currentPage - lastPage - hasNextPage - perPage - } - media(id: $id, search: $search, sort: $sort, type: ANIME) { - id - idMal - title { - romaji - english - } - coverImage { - large - } - } - } - } - `; - - // use useQuery hook to execute query and get data - const { loading, error, data } = useQuery(ANIME_QUERY, { - variables: { - search: searchQuery, - page: 1, - perPage: 5, - sort: "TRENDING_DESC", - }, - }); - - // render component - if (loading) return

Loading...

; - if (error) return

Error :(

; - - const { media } = data.Page; - - // const cleanDescription = description.replace(/
/g, '').replace(/\n/g, ' '); - - return ( -
-
- {media.map((anime) => {})} -
-
- ); -}; - -export default SearchAni; diff --git a/components/hero/trending.js b/components/hero/trending.js deleted file mode 100644 index 24a6804..0000000 --- a/components/hero/trending.js +++ /dev/null @@ -1,120 +0,0 @@ -import React from "react"; -import { useQuery, gql } from "@apollo/client"; -import { MdChevronLeft, MdChevronRight } from "react-icons/md"; -import Link from "next/link"; -import Image from "next/image"; - -const Trending = () => { - const ANIME_QUERY = gql` - query ( - $id: Int - $page: Int - $perPage: Int - $search: String - $sort: [MediaSort] - ) { - Page(page: $page, perPage: $perPage) { - pageInfo { - total - currentPage - lastPage - hasNextPage - perPage - } - media(id: $id, search: $search, sort: $sort, type: ANIME) { - id - idMal - title { - romaji - english - } - coverImage { - large - } - description - bannerImage - type - popularity - averageScore - } - } - } - `; - - // use useQuery hook to execute query and get data - const { loading, error, data } = useQuery(ANIME_QUERY, { - variables: { - page: 1, - perPage: 15, - sort: "TRENDING_DESC", - }, - }); - - // render component - if (loading) return

; - if (error) return

Error :(

; - - const { media } = data.Page; - - const slideLeft = () => { - var slider = document.getElementById("slider"); - slider.scrollLeft = slider.scrollLeft - 500; - }; - const slideRight = () => { - var slider = document.getElementById("slider"); - slider.scrollLeft = slider.scrollLeft + 500; - }; - - return ( -
- -
- {media.map((anime) => { - const url = encodeURIComponent( - anime.title.english || anime.title.romaji - ); - - return ( -
- - {anime.title.romaji - } - className="z-20 h-[230px] w-[168px] object-cover p-2 duration-300 ease-in-out hover:scale-105 lg:h-[290px] lg:w-[209px]" - /> - -
- ); - })} -
- -
- ); -}; - -export default Trending; diff --git a/components/loadingScreen.js b/components/loadingScreen.js deleted file mode 100644 index 5b5621c..0000000 --- a/components/loadingScreen.js +++ /dev/null @@ -1,35 +0,0 @@ -import React from "react"; -import Typewriter from "typewriter-effect"; - -const LoadingScreen = () => { - return ( -
-
- qiqi -
- - { - typewriter - .typeString("Please wait...") - .pauseFor(1500) - .deleteAll() - .start(); - }} - /> - -
-
-
- ); -}; - -export default LoadingScreen; diff --git a/components/media/chisato.js b/components/media/chisato.js deleted file mode 100644 index 5fbbb0e..0000000 --- a/components/media/chisato.js +++ /dev/null @@ -1,83 +0,0 @@ -function Chisato(props) { - return ( -
- - - - - - - - - - - - - - - - - - - - - - - -
- ); -} - -export default Chisato; diff --git a/components/media/sticker.js b/components/media/sticker.js deleted file mode 100644 index fdd0590..0000000 --- a/components/media/sticker.js +++ /dev/null @@ -1,34 +0,0 @@ -import React from "react"; - -function StickerWIP() { - return ( - - - - - - - - - - ); -} - -export default StickerWIP; diff --git a/components/navbar.js b/components/navbar.js index 6bc5504..162c57e 100644 --- a/components/navbar.js +++ b/components/navbar.js @@ -30,7 +30,7 @@ function Navbar(props) { return (
-
+
moopa
@@ -38,7 +38,7 @@ function Navbar(props) { {!isVisible && (
search + {session ? ( + + ) : ( + + )}
+
+ + Profile + + +
{/* My List */} )} diff --git a/components/test/dataAni.js b/components/test/dataAni.js deleted file mode 100644 index 528be47..0000000 --- a/components/test/dataAni.js +++ /dev/null @@ -1,2520 +0,0 @@ -export const AniData = { - id: "125367", - title: { - romaji: "Kaguya-sama wa Kokurasetai: Ultra Romantic", - english: "Kaguya-sama: Love is War -Ultra Romantic-", - native: "かぐや様は告らせたい-ウルトラロマンティック-", - }, - malId: 43608, - synonyms: [ - "Kaguya-sama: Love is War Season 3", - "辉夜大小姐想让我告白~天才们的恋爱头脑战~ 3", - "辉夜大小姐想让我告白~天才们的恋爱头脑战~ 第三季", - "Kaguya-sama wa Kokurasetai: Tensai-tachi no Renai Zunousen 3", - "สารภาพรักกับคุณคางุยะซะดี ๆ ~สงครามประสาทความรักของเหล่าอัจฉริยะ~ ภาค 3", - "สารภาพรักกับคุณคางุยะ ซะดี ๆ -อุลตร้า โรแมนติก-", - "Kaguya-sama wa Kokurasetai 3rd Season", - "Kaguya-sama: Cuộc Chiến Tỏ Tình - Ultra Romantic", - "Госпожа Кагуя: в любви как на войне. Ультраромантика", - "Nona Kaguya Ingin Ditembak: Ultra Romantic", - "Кагуя хочет, чтобы ей признались: война любви и разума гениев 3", - ], - isLicensed: true, - isAdult: false, - countryOfOrigin: "JP", - trailer: { - id: "RN4FFgHpAZo", - site: "youtube", - thumbnail: "https://i.ytimg.com/vi/RN4FFgHpAZo/hqdefault.jpg", - }, - image: - "https://s4.anilist.co/file/anilistcdn/media/anime/cover/large/bx125367-bl5vGalMH2cC.png", - popularity: 159108, - color: "#d6f1a1", - cover: - "https://s4.anilist.co/file/anilistcdn/media/anime/banner/125367-hGPJLSNfprO3.jpg", - description: - "The elite members of Shuchiin Academy's student council continue their competitive day-to-day antics. Council president Miyuki Shirogane clashes daily against vice-president Kaguya Shinomiya, each fighting tooth and nail to trick the other into confessing their romantic love. Kaguya struggles within the strict confines of her wealthy, uptight family, rebelling against her cold default demeanor as she warms to Shirogane and the rest of her friends.
\n
\nMeanwhile, council treasurer Yuu Ishigami suffers under the weight of his hopeless crush on Tsubame Koyasu, a popular upperclassman who helps to instill a new confidence in him. Miko Iino, the newest student council member, grows closer to the rule-breaking Ishigami while striving to overcome her own authoritarian moral code.
\n
\nAs love further blooms at Shuchiin Academy, the student council officers drag their outsider friends into increasingly comedic conflicts.
\n
\n(Source: MAL Rewrite)
\n
\nNotes:
\n- The 10-minute-long trailer is not added to the site, but the staff for it have been credited in this entry.
\n- The first episode had an advanced screening on April 2, in both New York & Los Angeles.
", - status: "Completed", - releaseDate: 2022, - startDate: { - year: 2022, - month: 4, - day: 9, - }, - endDate: { - year: 2022, - month: 6, - day: 25, - }, - totalEpisodes: 13, - currentEpisode: 13, - rating: 90, - duration: 24, - genres: ["Comedy", "Psychological", "Romance", "Slice of Life"], - season: "SPRING", - studios: ["A-1 Pictures"], - subOrDub: "sub", - type: "TV", - recommendations: [ - { - id: 14813, - malId: 14813, - title: { - romaji: "Yahari Ore no Seishun Love Come wa Machigatteiru.", - english: "My Teen Romantic Comedy SNAFU", - native: "やはり俺の青春ラブコメはまちがっている。", - userPreferred: "Yahari Ore no Seishun Love Come wa Machigatteiru.", - }, - status: "Completed", - episodes: 13, - image: - "https://s4.anilist.co/file/anilistcdn/media/anime/cover/large/nx14813-BC8aanHK9fju.jpg", - cover: - "https://s4.anilist.co/file/anilistcdn/media/anime/banner/14813-urImBxyWJUEw.jpg", - rating: 78, - type: "TV", - }, - { - id: 100922, - malId: 37105, - title: { - romaji: "Grand Blue", - english: "Grand Blue Dreaming", - native: "ぐらんぶる", - userPreferred: "Grand Blue", - }, - status: "Completed", - episodes: 12, - image: - "https://s4.anilist.co/file/anilistcdn/media/anime/cover/large/bx100922-ltoQa6rosUyP.png", - cover: - "https://s4.anilist.co/file/anilistcdn/media/anime/banner/100922-ef1bBJCUCfxk.jpg", - rating: 82, - type: "TV", - }, - { - id: 103572, - malId: 38101, - title: { - romaji: "Go-toubun no Hanayome", - english: "The Quintessential Quintuplets", - native: "五等分の花嫁", - userPreferred: "Go-toubun no Hanayome", - }, - status: "Completed", - episodes: 12, - image: - "https://s4.anilist.co/file/anilistcdn/media/anime/cover/large/bx103572-2MXV30htoCSh.png", - cover: - "https://s4.anilist.co/file/anilistcdn/media/anime/banner/103572-qRtBguYOOR2j.jpg", - rating: 76, - type: "TV", - }, - { - id: 124080, - malId: 42897, - title: { - romaji: "Horimiya", - english: "Horimiya", - native: "ホリミヤ", - userPreferred: "Horimiya", - }, - status: "Completed", - episodes: 13, - image: - "https://s4.anilist.co/file/anilistcdn/media/anime/cover/large/bx124080-h8EPH92nyRfS.jpg", - cover: - "https://s4.anilist.co/file/anilistcdn/media/anime/banner/124080-ARyLAHHgikRq.jpg", - rating: 81, - type: "TV", - }, - { - id: 107067, - malId: 38992, - title: { - romaji: "Rikei ga Koi ni Ochita no de Shoumei shitemita.", - english: "Science Fell in Love, So I Tried to Prove It", - native: "理系が恋に落ちたので証明してみた。", - userPreferred: "Rikei ga Koi ni Ochita no de Shoumei shitemita.", - }, - status: "Completed", - episodes: 12, - image: - "https://s4.anilist.co/file/anilistcdn/media/anime/cover/large/bx107067-UOEanLoeuvYh.png", - cover: - "https://s4.anilist.co/file/anilistcdn/media/anime/banner/107067-QWr4Ity7NZbx.jpg", - rating: 72, - type: "ONA", - }, - { - id: 125124, - malId: 43470, - title: { - romaji: - "Rikei ga Koi ni Ochita no de Shoumei shitemita. r=1-sinθ (Heart)", - english: "Science Fell in Love, So I Tried to Prove It r=1-sinθ", - native: "理系が恋に落ちたので証明してみた。r=1-sinθ(ハート)", - userPreferred: - "Rikei ga Koi ni Ochita no de Shoumei shitemita. r=1-sinθ (Heart)", - }, - status: "Completed", - episodes: 12, - image: - "https://s4.anilist.co/file/anilistcdn/media/anime/cover/large/bx125124-FHz4ND4kJzqu.jpg", - cover: - "https://s4.anilist.co/file/anilistcdn/media/anime/cover/large/bx125124-FHz4ND4kJzqu.jpg", - rating: 71, - type: "TV", - }, - { - id: 133965, - malId: 48926, - title: { - romaji: "Komi-san wa, Komyushou desu.", - english: "Komi Can’t Communicate", - native: "古見さんは、コミュ症です。", - userPreferred: "Komi-san wa, Komyushou desu.", - }, - status: "Completed", - episodes: 12, - image: - "https://s4.anilist.co/file/anilistcdn/media/anime/cover/large/bx133965-9TZBS4m4yvED.png", - cover: - "https://s4.anilist.co/file/anilistcdn/media/anime/banner/133965-spTi0WE7jR0r.jpg", - rating: 79, - type: "TV", - }, - { - id: 5081, - malId: 5081, - title: { - romaji: "Bakemonogatari", - english: "Bakemonogatari", - native: "化物語", - userPreferred: "Bakemonogatari", - }, - status: "Completed", - episodes: 15, - image: - "https://s4.anilist.co/file/anilistcdn/media/anime/cover/large/bx5081-mzWo8ZayqhES.jpg", - cover: - "https://s4.anilist.co/file/anilistcdn/media/anime/banner/n5081-0Zcn5GOFYHMc.jpg", - rating: 82, - type: "TV", - }, - { - id: 101921, - malId: 37999, - title: { - romaji: "Kaguya-sama wa Kokurasetai: Tensaitachi no Renai Zunousen", - english: "Kaguya-sama: Love is War", - native: "かぐや様は告らせたい~天才たちの恋愛頭脳戦~", - userPreferred: - "Kaguya-sama wa Kokurasetai: Tensaitachi no Renai Zunousen", - }, - status: "Completed", - episodes: 12, - image: - "https://s4.anilist.co/file/anilistcdn/media/anime/cover/large/bx101921-VvdGQy1ZySYf.jpg", - cover: - "https://s4.anilist.co/file/anilistcdn/media/anime/banner/101921-GgvvFhlNhzlF.jpg", - rating: 83, - type: "TV", - }, - { - id: 140960, - malId: 50265, - title: { - romaji: "SPY×FAMILY", - english: "SPY x FAMILY", - native: "SPY×FAMILY", - userPreferred: "SPY×FAMILY", - }, - status: "Completed", - episodes: 12, - image: - "https://s4.anilist.co/file/anilistcdn/media/anime/cover/large/bx140960-vN39AmOWrVB5.jpg", - cover: - "https://s4.anilist.co/file/anilistcdn/media/anime/banner/140960-Z7xSvkRxHKfj.jpg", - rating: 86, - type: "TV", - }, - { - id: 127911, - malId: 45613, - title: { - romaji: "Kawaii dake ja Nai Shikimori-san", - english: "Shikimori's Not Just a Cutie", - native: "可愛いだけじゃない式守さん", - userPreferred: "Kawaii dake ja Nai Shikimori-san", - }, - status: "Completed", - episodes: 12, - image: - "https://s4.anilist.co/file/anilistcdn/media/anime/cover/large/bx127911-cQVL0dhldFwn.jpg", - cover: - "https://s4.anilist.co/file/anilistcdn/media/anime/banner/127911-YRSP7vuUy801.jpg", - rating: 68, - type: "TV", - }, - { - id: 21804, - malId: 33255, - title: { - romaji: "Saiki Kusuo no Ψ-nan", - english: "The Disastrous Life of Saiki K.", - native: "斉木楠雄のΨ難", - userPreferred: "Saiki Kusuo no Ψ-nan", - }, - status: "Completed", - episodes: 120, - image: - "https://s4.anilist.co/file/anilistcdn/media/anime/cover/large/bx21804-AAjWfz9JY1EO.jpg", - cover: - "https://s4.anilist.co/file/anilistcdn/media/anime/banner/21804-QaKs5bDSGX6W.jpg", - rating: 83, - type: "TV_SHORT", - }, - { - id: 20574, - malId: 21877, - title: { - romaji: "Hi Score Girl", - english: "Hi Score Girl", - native: "ハイスコアガール", - userPreferred: "Hi Score Girl", - }, - status: "Completed", - episodes: 12, - image: - "https://s4.anilist.co/file/anilistcdn/media/anime/cover/large/bx20574-cUPxastH5vAm.jpg", - cover: - "https://s4.anilist.co/file/anilistcdn/media/anime/banner/20574-wSZyxGOlW4Io.jpg", - rating: 75, - type: "TV", - }, - { - id: 142984, - malId: 50631, - title: { - romaji: "Komi-san wa, Komyushou desu. 2", - english: "Komi Can't Communicate Part 2", - native: "古見さんは、コミュ症です。2", - userPreferred: "Komi-san wa, Komyushou desu. 2", - }, - status: "Completed", - episodes: 12, - image: - "https://s4.anilist.co/file/anilistcdn/media/anime/cover/large/bx142984-nv2MWVWZ1yYH.jpg", - cover: - "https://s4.anilist.co/file/anilistcdn/media/anime/cover/large/bx142984-nv2MWVWZ1yYH.jpg", - rating: 80, - type: "TV", - }, - { - id: 101291, - malId: 37450, - title: { - romaji: "Seishun Buta Yarou wa Bunny Girl Senpai no Yume wo Minai", - english: "Rascal Does Not Dream of Bunny Girl Senpai", - native: "青春ブタ野郎はバニーガール先輩の夢を見ない", - userPreferred: - "Seishun Buta Yarou wa Bunny Girl Senpai no Yume wo Minai", - }, - status: "Completed", - episodes: 13, - image: - "https://s4.anilist.co/file/anilistcdn/media/anime/cover/large/bx101291-L71WpAkZPtgm.jpg", - cover: - "https://s4.anilist.co/file/anilistcdn/media/anime/banner/n101291-fqIUvQ6apEtD.jpg", - rating: 81, - type: "TV", - }, - { - id: 116267, - malId: 41389, - title: { - romaji: "Tonikaku Kawaii", - english: "TONIKAWA: Over The Moon For You", - native: "トニカクカワイイ", - userPreferred: "Tonikaku Kawaii", - }, - status: "Completed", - episodes: 12, - image: - "https://s4.anilist.co/file/anilistcdn/media/anime/cover/large/bx116267-CSAkFXN2Zsai.jpg", - cover: - "https://s4.anilist.co/file/anilistcdn/media/anime/banner/116267-xQRslGT0tMTS.jpg", - rating: 77, - type: "TV", - }, - { - id: 8726, - malId: 8726, - title: { - romaji: "Soredemo Machi wa Mawatteiru", - english: "And Yet The Town Moves", - native: "それでも町は廻っている", - userPreferred: "Soredemo Machi wa Mawatteiru", - }, - status: "Completed", - episodes: 12, - image: - "https://s4.anilist.co/file/anilistcdn/media/anime/cover/large/bx8726-PX1AiBJxOzyo.png", - cover: - "https://s4.anilist.co/file/anilistcdn/media/anime/banner/8726-JZ9aVlxAQERm.jpg", - rating: 73, - type: "TV", - }, - { - id: 132010, - malId: 48643, - title: { - romaji: "Koi wa Sekai Seifuku no Ato de", - english: "Love After World Domination", - native: "恋は世界征服のあとで", - userPreferred: "Koi wa Sekai Seifuku no Ato de", - }, - status: "Completed", - episodes: 12, - image: - "https://s4.anilist.co/file/anilistcdn/media/anime/cover/large/bx132010-s0o3Rg0XvDXl.jpg", - cover: - "https://s4.anilist.co/file/anilistcdn/media/anime/banner/132010-6KV20Q2umOrA.jpg", - rating: 74, - type: "TV", - }, - { - id: 6045, - malId: 6045, - title: { - romaji: "Kimi ni Todoke", - english: "Kimi ni Todoke: From Me to You", - native: "君に届け", - userPreferred: "Kimi ni Todoke", - }, - status: "Completed", - episodes: 25, - image: - "https://s4.anilist.co/file/anilistcdn/media/anime/cover/large/bx6045-txJOukR5Qve4.jpg", - cover: - "https://s4.anilist.co/file/anilistcdn/media/anime/banner/n6045-HmG3MtJalXIH.jpg", - rating: 78, - type: "TV", - }, - { - id: 138424, - malId: 49721, - title: { - romaji: "Karakai Jouzu no Takagi-san 3", - english: "Teasing Master Takagi-san Season 3", - native: "からかい上手の高木さん3", - userPreferred: "Karakai Jouzu no Takagi-san 3", - }, - status: "Completed", - episodes: 12, - image: - "https://s4.anilist.co/file/anilistcdn/media/anime/cover/large/bx138424-97Nz1P7M3O2d.png", - cover: - "https://s4.anilist.co/file/anilistcdn/media/anime/banner/138424-DGPPFxUinNmt.jpg", - rating: 83, - type: "TV", - }, - { - id: 24, - malId: 24, - title: { - romaji: "School Rumble", - english: "School Rumble", - native: "スクールランブル", - userPreferred: "School Rumble", - }, - status: "Completed", - episodes: 26, - image: - "https://s4.anilist.co/file/anilistcdn/media/anime/cover/large/bx24-InbFkgWGvqIK.png", - cover: - "https://s4.anilist.co/file/anilistcdn/media/anime/banner/24-THD6AYmlVPIb.jpg", - rating: 76, - type: "TV", - }, - { - id: 20755, - malId: 24833, - title: { - romaji: "Ansatsu Kyoushitsu", - english: "Assassination Classroom", - native: "暗殺教室", - userPreferred: "Ansatsu Kyoushitsu", - }, - status: "Completed", - episodes: 22, - image: - "https://s4.anilist.co/file/anilistcdn/media/anime/cover/large/bx20755-q0b3Ok1cAbPd.jpg", - cover: - "https://s4.anilist.co/file/anilistcdn/media/anime/banner/20755-D4ipww9U8YkC.jpg", - rating: 79, - type: "TV", - }, - ], - characters: [ - { - id: 121101, - role: "MAIN", - name: { - first: "Miyuki", - last: "Shirogane", - full: "Miyuki Shirogane", - native: "白銀御行", - userPreferred: "Miyuki Shirogane", - }, - image: - "https://s4.anilist.co/file/anilistcdn/character/large/b121101-Q8HzKP15At2d.png", - voiceActors: [ - { - id: 112635, - language: "Japanese", - name: { - first: "Makoto", - last: "Furukawa", - full: "Makoto Furukawa", - native: "古川慎", - userPreferred: "Makoto Furukawa", - }, - image: - "https://s4.anilist.co/file/anilistcdn/staff/large/n112635-ORlGvRvgf5Nq.png", - }, - { - id: 119609, - language: "English", - name: { - first: "Clifford", - last: "Chapin", - full: "Clifford Chapin", - native: null, - userPreferred: "Clifford Chapin", - }, - image: - "https://s4.anilist.co/file/anilistcdn/staff/large/n119609-0LGmxEBb7PS9.jpg", - }, - { - id: 100486, - language: "Spanish", - name: { - first: "Enzo", - last: "Fortuny", - full: "Enzo Fortuny", - native: "Enzo Favio Fortuny Romero", - userPreferred: "Enzo Fortuny", - }, - image: - "https://s4.anilist.co/file/anilistcdn/staff/large/n100486-0Sv0euaLpbyh.jpg", - }, - { - id: 179920, - language: "Portuguese", - name: { - first: "Rodolfo", - last: "Novaes", - full: "Rodolfo Novaes", - native: "Rodolfo Novaes da Silva", - userPreferred: "Rodolfo Novaes", - }, - image: - "https://s4.anilist.co/file/anilistcdn/staff/large/n179920-jyB8tIATM41H.jpg", - }, - { - id: 275100, - language: "French", - name: { - first: "Martin", - last: "Faliu", - full: "Martin Faliu", - native: null, - userPreferred: "Martin Faliu", - }, - image: - "https://s4.anilist.co/file/anilistcdn/staff/large/n275100-1MsTZ135RcJG.jpg", - }, - { - id: 105706, - language: "German", - name: { - first: "Dirk", - last: "Petrick", - full: "Dirk Petrick", - native: null, - userPreferred: "Dirk Petrick", - }, - image: "https://s4.anilist.co/file/anilistcdn/staff/large/10706.jpg", - }, - ], - }, - { - id: 120649, - role: "MAIN", - name: { - first: "Kaguya", - last: "Shinomiya", - full: "Kaguya Shinomiya", - native: "四宮かぐや", - userPreferred: "Kaguya Shinomiya", - }, - image: - "https://s4.anilist.co/file/anilistcdn/character/large/b120649-JMKQgPmVq6d3.png", - voiceActors: [ - { - id: 123268, - language: "Japanese", - name: { - first: "Aoi", - last: "Koga", - full: "Aoi Koga", - native: "古賀葵", - userPreferred: "Aoi Koga", - }, - image: - "https://s4.anilist.co/file/anilistcdn/staff/large/n123268-zIZLjZ5Xfbk4.png", - }, - { - id: 104091, - language: "English", - name: { - first: "Alexis", - last: "Tipton", - full: "Alexis Tipton", - native: null, - userPreferred: "Alexis Tipton", - }, - image: - "https://s4.anilist.co/file/anilistcdn/staff/large/n104091-OZpJbFWFwnvV.jpg", - }, - { - id: 181976, - language: "Spanish", - name: { - first: "Jessica", - last: "Ángeles", - full: "Jessica Ángeles", - native: "Jessica Iveth Ángeles Ramírez", - userPreferred: "Jessica Ángeles", - }, - image: - "https://s4.anilist.co/file/anilistcdn/staff/large/n181976-1USsTdPqcj9G.png", - }, - { - id: 213538, - language: "Portuguese", - name: { - first: "Marcella", - last: "Almeida", - full: "Marcella Almeida", - native: null, - userPreferred: "Marcella Almeida", - }, - image: - "https://s4.anilist.co/file/anilistcdn/staff/large/n213538-ywfbYAlZ12o4.png", - }, - { - id: 216176, - language: "French", - name: { - first: "Emmylou", - last: "Homs", - full: "Emmylou Homs", - native: null, - userPreferred: "Emmylou Homs", - }, - image: - "https://s4.anilist.co/file/anilistcdn/staff/large/n216176-wk4Ts4Kv2fY5.jpg", - }, - { - id: 140948, - language: "German", - name: { - first: "Amelie", - last: "Plaas-Link", - full: "Amelie Plaas-Link", - native: null, - userPreferred: "Amelie Plaas-Link", - }, - image: - "https://s4.anilist.co/file/anilistcdn/staff/large/n140948-GiZ70lD0b6hY.png", - }, - ], - }, - { - id: 121103, - role: "MAIN", - name: { - first: "Chika", - last: "Fujiwara", - full: "Chika Fujiwara", - native: "藤原千花", - userPreferred: "Chika Fujiwara", - }, - image: - "https://s4.anilist.co/file/anilistcdn/character/large/b121103-UGLxT8utLPnq.png", - voiceActors: [ - { - id: 121961, - language: "Japanese", - name: { - first: "Konomi", - last: "Kohara", - full: "Konomi Kohara", - native: "小原好美", - userPreferred: "Konomi Kohara", - }, - image: - "https://s4.anilist.co/file/anilistcdn/staff/large/n121961-TaMewK1taQm6.png", - }, - { - id: 101729, - language: "English", - name: { - first: "Jad", - last: "Saxton", - full: "Jad Saxton", - native: null, - userPreferred: "Jad Saxton", - }, - image: - "https://s4.anilist.co/file/anilistcdn/staff/large/n101729-tga5Umgm17Mj.jpg", - }, - { - id: 189432, - language: "Spanish", - name: { - first: "Elizabeth", - last: "Infante", - full: "Elizabeth Infante", - native: "Elizabeth Paola Infante", - userPreferred: "Elizabeth Infante", - }, - image: - "https://s4.anilist.co/file/anilistcdn/staff/large/n189432-Ll0v4D0jfSFA.png", - }, - { - id: 176945, - language: "Portuguese", - name: { - first: "Amanda", - last: "Tavares", - full: "Amanda Tavares", - native: null, - userPreferred: "Amanda Tavares", - }, - image: - "https://s4.anilist.co/file/anilistcdn/staff/large/n176945-j0SIOVCvG28s.jpg", - }, - { - id: 165978, - language: "French", - name: { - first: "Clara", - last: "Soares", - full: "Clara Soares", - native: null, - userPreferred: "Clara Soares", - }, - image: - "https://s4.anilist.co/file/anilistcdn/staff/large/n165978-BhMLANgEZpeB.jpg", - }, - { - id: 101117, - language: "German", - name: { - first: "Rieke", - last: "Werner", - full: "Rieke Werner", - native: null, - userPreferred: "Rieke Werner", - }, - image: - "https://s4.anilist.co/file/anilistcdn/staff/large/n101117-Owts3TGv6QZn.png", - }, - ], - }, - { - id: 121102, - role: "MAIN", - name: { - first: "Yuu", - last: "Ishigami", - full: "Yuu Ishigami", - native: "石上優", - userPreferred: "Yuu Ishigami", - }, - image: - "https://s4.anilist.co/file/anilistcdn/character/large/b121102-tiQFxnSEIAwm.png", - voiceActors: [ - { - id: 123450, - language: "Japanese", - name: { - first: "Ryouta", - last: "Suzuki", - full: "Ryouta Suzuki", - native: "鈴木崚汰", - userPreferred: "Ryouta Suzuki", - }, - image: - "https://s4.anilist.co/file/anilistcdn/staff/large/n123450-Hmi5iu3KDHwc.png", - }, - { - id: 111641, - language: "English", - name: { - first: "Austin", - last: "Tindle", - full: "Austin Tindle", - native: null, - userPreferred: "Austin Tindle", - }, - image: - "https://s4.anilist.co/file/anilistcdn/staff/large/n111641-DbiOaZhYsNsi.jpg", - }, - { - id: 182229, - language: "Spanish", - name: { - first: "Alejandro", - last: "Orozco", - full: "Alejandro Orozco", - native: "Alejandro Orozco Antúnez", - userPreferred: "Alejandro Orozco", - }, - image: - "https://s4.anilist.co/file/anilistcdn/staff/large/n182229-45duKmz9Eupa.png", - }, - { - id: 240596, - language: "Portuguese", - name: { - first: "Fernando", - last: "Peiter", - full: "Fernando Peiter", - native: null, - userPreferred: "Fernando Peiter", - }, - image: - "https://s4.anilist.co/file/anilistcdn/staff/large/n240596-CNEuKRCS5pa2.png", - }, - { - id: 163980, - language: "French", - name: { - first: "Hervé", - last: "Grull", - full: "Hervé Grull", - native: null, - userPreferred: "Hervé Grull", - }, - image: - "https://s4.anilist.co/file/anilistcdn/staff/large/n163980-ekmHy5Zxtjhu.jpg", - }, - { - id: 140228, - language: "German", - name: { - first: "Amadeus", - last: "Strobl", - full: "Amadeus Strobl", - native: null, - userPreferred: "Amadeus Strobl", - }, - image: - "https://s4.anilist.co/file/anilistcdn/staff/large/n140228-QkcDFuPKFd9t.jpg", - }, - ], - }, - { - id: 125886, - role: "MAIN", - name: { - first: "Miko", - last: "Iino", - full: "Miko Iino", - native: "伊井野ミコ", - userPreferred: "Miko Iino", - }, - image: - "https://s4.anilist.co/file/anilistcdn/character/large/b125886-TQbmqAaSgBLS.png", - voiceActors: [ - { - id: 119518, - language: "Japanese", - name: { - first: "Miyu", - last: "Tomita", - full: "Miyu Tomita", - native: "富田美憂", - userPreferred: "Miyu Tomita", - }, - image: - "https://s4.anilist.co/file/anilistcdn/staff/large/n119518-vZN7TPy12iuu.png", - }, - { - id: 127741, - language: "English", - name: { - first: "Madeleine", - last: "Morris", - full: "Madeleine Morris", - native: null, - userPreferred: "Madeleine Morris", - }, - image: - "https://s4.anilist.co/file/anilistcdn/staff/large/n127741-YLXfUKNBsclt.jpg", - }, - { - id: 202438, - language: "Spanish", - name: { - first: "Desireé", - last: "González", - full: "Desireé González", - native: null, - userPreferred: "Desireé González", - }, - image: - "https://s4.anilist.co/file/anilistcdn/staff/large/n202438-Ov4z4EIy8W0T.png", - }, - { - id: 198676, - language: "Portuguese", - name: { - first: "Letícia", - last: "Ida", - full: "Letícia Ida", - native: null, - userPreferred: "Letícia Ida", - }, - image: - "https://s4.anilist.co/file/anilistcdn/staff/large/n198676-lKn9p7esuO0e.png", - }, - { - id: 100681, - language: "French", - name: { - first: "Isabelle", - last: "Volpe", - full: "Isabelle Volpe", - native: null, - userPreferred: "Isabelle Volpe", - }, - image: "https://s4.anilist.co/file/anilistcdn/staff/large/5681.jpg", - }, - { - id: 263264, - language: "German", - name: { - first: "Paulina", - last: "Bachmann", - full: "Paulina Bachmann", - native: null, - userPreferred: "Paulina Bachmann", - }, - image: - "https://s4.anilist.co/file/anilistcdn/staff/large/n263264-8ulFSH0bZ1zE.jpg", - }, - ], - }, - { - id: 121104, - role: "SUPPORTING", - name: { - first: "Ai", - last: "Hayasaka", - full: "Ai Hayasaka", - native: "早坂愛", - userPreferred: "Ai Hayasaka", - }, - image: - "https://s4.anilist.co/file/anilistcdn/character/large/b121104-7TYRl3EEsDYU.png", - voiceActors: [ - { - id: 116543, - language: "Japanese", - name: { - first: "Yumiri", - last: "Hanamori", - full: "Yumiri Hanamori", - native: "花守ゆみり", - userPreferred: "Yumiri Hanamori", - }, - image: - "https://s4.anilist.co/file/anilistcdn/staff/large/n116543-nDWFpolRN9dM.png", - }, - { - id: 112793, - language: "English", - name: { - first: "Amanda", - last: "Lee", - full: "Amanda Lee", - native: null, - userPreferred: "Amanda Lee", - }, - image: - "https://s4.anilist.co/file/anilistcdn/staff/large/n112793-WnHttTnbLSed.png", - }, - { - id: 182192, - language: "Spanish", - name: { - first: "Leyla", - last: "Rangel", - full: "Leyla Rangel", - native: "Leyla Sofía Rangel García", - userPreferred: "Leyla Rangel", - }, - image: - "https://s4.anilist.co/file/anilistcdn/staff/large/n182192-JCVBbGHC63TL.png", - }, - { - id: 141355, - language: "Portuguese", - name: { - first: "Jéssica", - last: "Cardia", - full: "Jéssica Cardia", - native: null, - userPreferred: "Jéssica Cardia", - }, - image: - "https://s4.anilist.co/file/anilistcdn/staff/large/n141355-hPmrP1OIf3yq.png", - }, - { - id: 275102, - language: "French", - name: { - first: "Lilly", - last: "Caruso", - full: "Lilly Caruso", - native: null, - userPreferred: "Lilly Caruso", - }, - image: - "https://s4.anilist.co/file/anilistcdn/staff/large/n275102-qnlETNPatNb6.jpg", - }, - { - id: 140015, - language: "German", - name: { - first: "Magdalena", - last: "Höfner", - full: "Magdalena Höfner", - native: null, - userPreferred: "Magdalena Höfner", - }, - image: - "https://s4.anilist.co/file/anilistcdn/staff/large/n140015-1f0nUXbpUdyl.png", - }, - ], - }, - { - id: 134329, - role: "SUPPORTING", - name: { - first: "Moeha", - last: "Fujiwara", - full: "Moeha Fujiwara", - native: "藤原萌葉", - userPreferred: "Moeha Fujiwara", - }, - image: - "https://s4.anilist.co/file/anilistcdn/character/large/b134329-cRdrf5BqmIVk.png", - voiceActors: [ - { - id: 118663, - language: "Japanese", - name: { - first: "Ari", - last: "Ozawa", - full: "Ari Ozawa", - native: "小澤亜李", - userPreferred: "Ari Ozawa", - }, - image: - "https://s4.anilist.co/file/anilistcdn/staff/large/n118663-fFzQqJDtYNdA.png", - }, - { - id: 253702, - language: "Spanish", - name: { - first: "Marisol", - last: "Hamed", - full: "Marisol Hamed", - native: "Marisol Valdez Hamed", - userPreferred: "Marisol Hamed", - }, - image: - "https://s4.anilist.co/file/anilistcdn/staff/large/n253702-Imyptqbsby2h.png", - }, - { - id: 175610, - language: "Portuguese", - name: { - first: "Nica", - last: "Nogueira", - full: "Nica Nogueira", - native: null, - userPreferred: "Nica Nogueira", - }, - image: - "https://s4.anilist.co/file/anilistcdn/staff/large/default.jpg", - }, - { - id: 273360, - language: "French", - name: { - first: "Anna", - last: "Lauzeray-Gishi", - full: "Anna Lauzeray-Gishi", - native: null, - userPreferred: "Anna Lauzeray-Gishi", - }, - image: - "https://s4.anilist.co/file/anilistcdn/staff/large/n273360-hD3tunfOx1Yc.jpg", - }, - { - id: 140013, - language: "German", - name: { - first: "Betty", - last: "Förster", - full: "Betty Förster", - native: null, - userPreferred: "Betty Förster", - }, - image: - "https://s4.anilist.co/file/anilistcdn/staff/large/n140013-tNbAHQyEVeWr.png", - }, - ], - }, - { - id: 126986, - role: "SUPPORTING", - name: { - first: "Erika", - last: "Kose", - full: "Erika Kose", - native: "巨瀬工リカ", - userPreferred: "Erika Kose", - }, - image: - "https://s4.anilist.co/file/anilistcdn/character/large/b126986-Pcspig2orfPq.png", - voiceActors: [ - { - id: 118939, - language: "Japanese", - name: { - first: "Ayaka", - last: "Asai", - full: "Ayaka Asai", - native: "朝井彩加", - userPreferred: "Ayaka Asai", - }, - image: - "https://s4.anilist.co/file/anilistcdn/staff/large/n118939-6W4V2P4JL6QH.png", - }, - { - id: 285541, - language: "Spanish", - name: { - first: "Stephanie", - last: "Filigrana", - full: "Stephanie Filigrana", - native: null, - userPreferred: "Stephanie Filigrana", - }, - image: - "https://s4.anilist.co/file/anilistcdn/staff/large/n285541-4reGe3QxUidB.png", - }, - { - id: 248720, - language: "Portuguese", - name: { - first: "Mariana", - last: "Neves", - full: "Mariana Neves", - native: null, - userPreferred: "Mariana Neves", - }, - image: - "https://s4.anilist.co/file/anilistcdn/staff/large/n248720-BIspGY5vppaP.png", - }, - { - id: 143592, - language: "German", - name: { - first: "Lana Finn", - last: "Marti", - full: "Lana Finn Marti", - native: null, - userPreferred: "Lana Finn Marti", - }, - image: - "https://s4.anilist.co/file/anilistcdn/staff/large/default.jpg", - }, - ], - }, - { - id: 212389, - role: "SUPPORTING", - name: { - first: "Zen Seito Kaichou", - last: null, - full: "Zen Seito Kaichou", - native: "生前徒会長", - userPreferred: "Zen Seito Kaichou", - }, - image: - "https://s4.anilist.co/file/anilistcdn/character/large/b212389-M0QAzDPJvn7Z.jpg", - voiceActors: [ - { - id: 105989, - language: "Japanese", - name: { - first: "Nobunaga", - last: "Shimazaki", - full: "Nobunaga Shimazaki", - native: "島崎信長", - userPreferred: "Nobunaga Shimazaki", - }, - image: - "https://s4.anilist.co/file/anilistcdn/staff/large/n105989-96etzH1dLNug.jpg", - }, - { - id: 182219, - language: "Spanish", - name: { - first: "Alan", - last: "Bravo", - full: "Alan Bravo", - native: null, - userPreferred: "Alan Bravo", - }, - image: - "https://s4.anilist.co/file/anilistcdn/staff/large/n182219-dgUxanIweWBY.png", - }, - { - id: 198591, - language: "Portuguese", - name: { - first: "Guilherme", - last: "de Barros", - full: "Guilherme de Barros", - native: null, - userPreferred: "Guilherme de Barros", - }, - image: - "https://s4.anilist.co/file/anilistcdn/staff/large/n198591-SUn0HtX1Nxoa.jpg", - }, - ], - }, - { - id: 134326, - role: "SUPPORTING", - name: { - first: "Tsubame", - last: "Koyasu", - full: "Tsubame Koyasu", - native: "子安つばめ", - userPreferred: "Tsubame Koyasu", - }, - image: - "https://s4.anilist.co/file/anilistcdn/character/large/b134326-GOZE06QSlJSb.png", - voiceActors: [ - { - id: 102322, - language: "Japanese", - name: { - first: "Haruka", - last: "Fukuhara", - full: "Haruka Fukuhara", - native: "福原遥", - userPreferred: "Haruka Fukuhara", - }, - image: - "https://s4.anilist.co/file/anilistcdn/staff/large/n102322-GkjxD99Pt3rT.png", - }, - { - id: 182631, - language: "Spanish", - name: { - first: "Erika", - last: "Langarica", - full: "Erika Langarica", - native: null, - userPreferred: "Erika Langarica", - }, - image: - "https://s4.anilist.co/file/anilistcdn/staff/large/n182631-ybXCM5pXa7Mu.png", - }, - { - id: 197182, - language: "Portuguese", - name: { - first: "Mari", - last: "Haruno", - full: "Mari Haruno", - native: null, - userPreferred: "Mari Haruno", - }, - image: - "https://s4.anilist.co/file/anilistcdn/staff/large/n197182-mDKkEWvcDi9j.jpg", - }, - { - id: 140888, - language: "German", - name: { - first: "Jamie Lee", - last: "Blank", - full: "Jamie Lee Blank", - native: null, - userPreferred: "Jamie Lee Blank", - }, - image: - "https://s4.anilist.co/file/anilistcdn/staff/large/n140888-wXPdKjB8tGV4.png", - }, - ], - }, - { - id: 134892, - role: "SUPPORTING", - name: { - first: "Adolphe", - last: "Pescarolo", - full: "Adolphe Pescarolo", - native: "アドルフ・ペスカローロ", - userPreferred: "Adolphe Pescarolo", - }, - image: - "https://s4.anilist.co/file/anilistcdn/character/large/b134892-HSzCDOQagDJv.jpg", - voiceActors: [ - { - id: 111959, - language: "Japanese", - name: { - first: "Itaru", - last: "Yamamoto", - full: "Itaru Yamamoto", - native: "山本格", - userPreferred: "Itaru Yamamoto", - }, - image: "https://s4.anilist.co/file/anilistcdn/staff/large/16959.jpg", - }, - { - id: 96339, - language: "English", - name: { - first: "Jeremy", - last: "Inman", - full: "Jeremy Inman", - native: null, - userPreferred: "Jeremy Inman", - }, - image: "https://s4.anilist.co/file/anilistcdn/staff/large/1339.jpg", - }, - { - id: 189453, - language: "Spanish", - name: { - first: "Raúl", - last: "Anaya", - full: "Raúl Anaya", - native: "Raúl Alberto Anaya Lunas", - userPreferred: "Raúl Anaya", - }, - image: - "https://s4.anilist.co/file/anilistcdn/staff/large/n189453-frceR3XuFqLw.png", - }, - { - id: 182488, - language: "Portuguese", - name: { - first: "Hélio", - last: "Ribeiro", - full: "Hélio Ribeiro", - native: null, - userPreferred: "Hélio Ribeiro", - }, - image: - "https://s4.anilist.co/file/anilistcdn/staff/large/n182488-iJuYz3JIxLQZ.jpg", - }, - { - id: 152984, - language: "French", - name: { - first: "Stéphane", - last: "Marais", - full: "Stéphane Marais", - native: null, - userPreferred: "Stéphane Marais", - }, - image: - "https://s4.anilist.co/file/anilistcdn/staff/large/n152984-kHa9e7APEpMC.jpg", - }, - { - id: 265392, - language: "German", - name: { - first: "Harald", - last: "Effenberg", - full: "Harald Effenberg", - native: null, - userPreferred: "Harald Effenberg", - }, - image: - "https://s4.anilist.co/file/anilistcdn/staff/large/n265392-UnHzM3HLl5nE.jpg", - }, - ], - }, - { - id: 212390, - role: "SUPPORTING", - name: { - first: "Momo", - last: "Ryuuju", - full: "Momo Ryuuju", - native: "龍珠桃", - userPreferred: "Momo Ryuuju", - }, - image: - "https://s4.anilist.co/file/anilistcdn/character/large/b212390-cCppoJIBYxyA.jpg", - voiceActors: [ - { - id: 95869, - language: "Japanese", - name: { - first: "Saori", - last: "Hayami", - full: "Saori Hayami", - native: "早見沙織", - userPreferred: "Saori Hayami", - }, - image: - "https://s4.anilist.co/file/anilistcdn/staff/large/n95869-qCQ0EaWpq1QT.png", - }, - { - id: 297131, - language: "Japanese", - name: { - first: "Sisi", - last: "Forster", - full: "Sisi Forster", - native: null, - userPreferred: "Sisi Forster", - }, - image: - "https://s4.anilist.co/file/anilistcdn/staff/large/default.jpg", - }, - { - id: 182233, - language: "Spanish", - name: { - first: "Carla", - last: "Castañeda", - full: "Carla Castañeda", - native: "Carla Castañeda Mendoza", - userPreferred: "Carla Castañeda", - }, - image: - "https://s4.anilist.co/file/anilistcdn/staff/large/n182233-mB72AFLGmKTK.jpg", - }, - { - id: 301905, - language: "Portuguese", - name: { - first: "Flávia", - last: "Damiani", - full: "Flávia Damiani", - native: null, - userPreferred: "Flávia Damiani", - }, - image: - "https://s4.anilist.co/file/anilistcdn/staff/large/n301905-1hedyhqBrEso.jpg", - }, - ], - }, - { - id: 275597, - role: "SUPPORTING", - name: { - first: "J", - last: "Suzuki", - full: "J Suzuki", - native: "鈴木J", - userPreferred: "J Suzuki", - }, - image: - "https://s4.anilist.co/file/anilistcdn/character/large/b275597-64W2GeSpgN5P.jpg", - voiceActors: [ - { - id: 101623, - language: "Japanese", - name: { - first: "Takeshi", - last: "Maruyama", - full: "Takeshi Maruyama", - native: "丸山壮史", - userPreferred: "Takeshi Maruyama", - }, - image: "https://s4.anilist.co/file/anilistcdn/staff/large/6623.jpg", - }, - { - id: 199860, - language: "Portuguese", - name: { - first: "Alex", - last: "Morales", - full: "Alex Morales", - native: null, - userPreferred: "Alex Morales", - }, - image: - "https://s4.anilist.co/file/anilistcdn/staff/large/n199860-TLVz6bpXfnVF.jpg", - }, - { - id: 218042, - language: "German", - name: { - first: "Axel", - last: "Strothmann", - full: "Axel Strothmann", - native: null, - userPreferred: "Axel Strothmann", - }, - image: - "https://s4.anilist.co/file/anilistcdn/staff/large/default.jpg", - }, - ], - }, - { - id: 134327, - role: "SUPPORTING", - name: { - first: "Tsubasa", - last: "Tanuma ", - full: "Tsubasa Tanuma ", - native: "田沼翼", - userPreferred: "Tsubasa Tanuma ", - }, - image: - "https://s4.anilist.co/file/anilistcdn/character/large/b134327-5tqYKvBaqRe2.png", - voiceActors: [ - { - id: 119833, - language: "Japanese", - name: { - first: "Taku", - last: "Yashiro", - full: "Taku Yashiro", - native: "八代拓", - userPreferred: "Taku Yashiro", - }, - image: - "https://s4.anilist.co/file/anilistcdn/staff/large/n119833-0SP13A92YLm4.jpg", - }, - { - id: 127809, - language: "English", - name: { - first: "Brandon", - last: "McInnis", - full: "Brandon McInnis", - native: "Brandon McInnis", - userPreferred: "Brandon McInnis", - }, - image: - "https://s4.anilist.co/file/anilistcdn/staff/large/n127809-uLM2ITKWUSCl.png", - }, - { - id: 184120, - language: "Spanish", - name: { - first: "Diego", - last: "Becerril", - full: "Diego Becerril", - native: null, - userPreferred: "Diego Becerril", - }, - image: - "https://s4.anilist.co/file/anilistcdn/staff/large/n184120-eNsy8lrRiqge.png", - }, - { - id: 254219, - language: "Portuguese", - name: { - first: "Rafael", - last: "Rheda", - full: "Rafael Rheda", - native: null, - userPreferred: "Rafael Rheda", - }, - image: - "https://s4.anilist.co/file/anilistcdn/staff/large/default.jpg", - }, - { - id: 187297, - language: "German", - name: { - first: "Ben", - last: "Hadad", - full: "Ben Hadad", - native: null, - userPreferred: "Ben Hadad", - }, - image: - "https://s4.anilist.co/file/anilistcdn/staff/large/default.jpg", - }, - ], - }, - { - id: 275116, - role: "SUPPORTING", - name: { - first: "Nao", - last: "Hayasaka", - full: "Nao Hayasaka", - native: "早坂奈央", - userPreferred: "Nao Hayasaka", - }, - image: - "https://s4.anilist.co/file/anilistcdn/character/large/b275116-SOfw5qLMI0FM.png", - voiceActors: [ - { - id: 108551, - language: "Japanese", - name: { - first: "Toa", - last: "Yukinari", - full: "Toa Yukinari", - native: "行成とあ", - userPreferred: "Toa Yukinari", - }, - image: - "https://s4.anilist.co/file/anilistcdn/staff/large/n108551-R4Ro9eFab55G.png", - }, - { - id: 207635, - language: "Spanish", - name: { - first: "América", - last: "Torres", - full: "América Torres", - native: null, - userPreferred: "América Torres", - }, - image: - "https://s4.anilist.co/file/anilistcdn/staff/large/n207635-YSaMMoab1MGq.png", - }, - { - id: 250114, - language: "Portuguese", - name: { - first: "Lia", - last: "Antunes", - full: "Lia Antunes", - native: null, - userPreferred: "Lia Antunes", - }, - image: - "https://s4.anilist.co/file/anilistcdn/staff/large/default.jpg", - }, - { - id: 195911, - language: "German", - name: { - first: "Franziska", - last: "Endres", - full: "Franziska Endres", - native: null, - userPreferred: "Franziska Endres", - }, - image: - "https://s4.anilist.co/file/anilistcdn/staff/large/default.jpg", - }, - ], - }, - { - id: 176219, - role: "SUPPORTING", - name: { - first: "Kozue", - last: "Makihara ", - full: "Kozue Makihara ", - native: "槇原こずえ", - userPreferred: "Kozue Makihara ", - }, - image: - "https://s4.anilist.co/file/anilistcdn/character/large/b176219-5XhyzA12lms2.jpg", - voiceActors: [ - { - id: 119383, - language: "Japanese", - name: { - first: "Marika", - last: "Kouno", - full: "Marika Kouno", - native: "高野麻里佳", - userPreferred: "Marika Kouno", - }, - image: - "https://s4.anilist.co/file/anilistcdn/staff/large/n119383-En92dXrTlJTY.png", - }, - { - id: 189430, - language: "Spanish", - name: { - first: "Azul", - last: "Valadez", - full: "Azul Valadez", - native: "Azucena Valadez Romero", - userPreferred: "Azul Valadez", - }, - image: - "https://s4.anilist.co/file/anilistcdn/staff/large/n189430-Mkuq464GJSnL.jpg", - }, - { - id: 285678, - language: "Portuguese", - name: { - first: "Juju", - last: "Bac", - full: "Juju Bac", - native: null, - userPreferred: "Juju Bac", - }, - image: - "https://s4.anilist.co/file/anilistcdn/staff/large/default.jpg", - }, - { - id: 261231, - language: "German", - name: { - first: "Liza", - last: "Simmerlein", - full: "Liza Simmerlein", - native: null, - userPreferred: "Liza Simmerlein", - }, - image: - "https://s4.anilist.co/file/anilistcdn/staff/large/default.jpg", - }, - ], - }, - { - id: 176218, - role: "SUPPORTING", - name: { - first: "Kazeno", - last: null, - full: "Kazeno", - native: "風野", - userPreferred: "Kazeno", - }, - image: - "https://s4.anilist.co/file/anilistcdn/character/large/b176218-x0TQnRrxS2Zs.jpg", - voiceActors: [ - { - id: 107705, - language: "Japanese", - name: { - first: "Taishi", - last: "Murata", - full: "Taishi Murata", - native: "村田太志", - userPreferred: "Taishi Murata", - }, - image: - "https://s4.anilist.co/file/anilistcdn/staff/large/n107705-lVfYRzWY5AFW.jpg", - }, - { - id: 184139, - language: "Spanish", - name: { - first: "Roberto", - last: "Salguero", - full: "Roberto Salguero", - native: null, - userPreferred: "Roberto Salguero", - }, - image: - "https://s4.anilist.co/file/anilistcdn/staff/large/n184139-i79eTGoEkKqd.jpg", - }, - { - id: 210886, - language: "Portuguese", - name: { - first: "Rex", - last: "Nunes", - full: "Rex Nunes", - native: "Reginaldo Nunes da Silva", - userPreferred: "Rex Nunes", - }, - image: - "https://s4.anilist.co/file/anilistcdn/staff/large/n210886-jUX57eQqlZpx.jpg", - }, - { - id: 142856, - language: "German", - name: { - first: "Daniel", - last: "Gärtner", - full: "Daniel Gärtner", - native: null, - userPreferred: "Daniel Gärtner", - }, - image: - "https://s4.anilist.co/file/anilistcdn/staff/large/default.jpg", - }, - ], - }, - { - id: 157369, - role: "SUPPORTING", - name: { - first: "Rei", - last: "Onodera", - full: "Rei Onodera", - native: "小野寺麗", - userPreferred: "Rei Onodera", - }, - image: - "https://s4.anilist.co/file/anilistcdn/character/large/b157369-9o1jZCEZMyYb.png", - voiceActors: [ - { - id: 119154, - language: "Japanese", - name: { - first: "Yuuki", - last: "Takada", - full: "Yuuki Takada", - native: "高田憂希", - userPreferred: "Yuuki Takada", - }, - image: - "https://s4.anilist.co/file/anilistcdn/staff/large/n119154-x2un4m4ECxn4.png", - }, - { - id: 254396, - language: "Portuguese", - name: { - first: "Melina", - last: "Valente", - full: "Melina Valente", - native: null, - userPreferred: "Melina Valente", - }, - image: - "https://s4.anilist.co/file/anilistcdn/staff/large/default.jpg", - }, - { - id: 275099, - language: "French", - name: { - first: "Kahina", - last: "Tagherset", - full: "Kahina Tagherset", - native: null, - userPreferred: "Kahina Tagherset", - }, - image: - "https://s4.anilist.co/file/anilistcdn/staff/large/n275099-CV0vPZH23Law.jpg", - }, - ], - }, - { - id: 134893, - role: "SUPPORTING", - name: { - first: "Shirogane no Chichi", - last: null, - full: "Shirogane no Chichi", - native: "白銀の父", - userPreferred: "Shirogane no Chichi", - }, - image: - "https://s4.anilist.co/file/anilistcdn/character/large/b134893-1dpk1sQ1pGRR.jpg", - voiceActors: [ - { - id: 95160, - language: "Japanese", - name: { - first: "Takehito", - last: "Koyasu", - full: "Takehito Koyasu", - native: "子安武人", - userPreferred: "Takehito Koyasu", - }, - image: - "https://s4.anilist.co/file/anilistcdn/staff/large/n95160-jWevcH7BmfE1.jpg", - }, - { - id: 182222, - language: "Spanish", - name: { - first: "Rafael", - last: "Pacheco", - full: "Rafael Pacheco", - native: null, - userPreferred: "Rafael Pacheco", - }, - image: - "https://s4.anilist.co/file/anilistcdn/staff/large/n182222-0Fz9qcwIYdVr.jpg", - }, - { - id: 241781, - language: "Portuguese", - name: { - first: "Adriano", - last: "Paixão", - full: "Adriano Paixão", - native: null, - userPreferred: "Adriano Paixão", - }, - image: - "https://s4.anilist.co/file/anilistcdn/staff/large/default.jpg", - }, - { - id: 165698, - language: "German", - name: { - first: "Nico", - last: "Nothnagel", - full: "Nico Nothnagel", - native: null, - userPreferred: "Nico Nothnagel", - }, - image: - "https://s4.anilist.co/file/anilistcdn/staff/large/default.jpg", - }, - ], - }, - { - id: 176220, - role: "SUPPORTING", - name: { - first: "", - last: "Terashima", - full: "Terashima", - native: "寺島", - userPreferred: "Terashima", - }, - image: - "https://s4.anilist.co/file/anilistcdn/character/large/b176220-ybbcG8hZSgUO.png", - voiceActors: [ - { - id: 125577, - language: "Japanese", - name: { - first: "Rina", - last: "Honizumi", - full: "Rina Honizumi", - native: "本泉莉奈", - userPreferred: "Rina Honizumi", - }, - image: - "https://s4.anilist.co/file/anilistcdn/staff/large/n125577-f48HE13krNVR.jpg", - }, - { - id: 257285, - language: "Portuguese", - name: { - first: "Gabriela", - last: "Stampacchio", - full: "Gabriela Stampacchio", - native: null, - userPreferred: "Gabriela Stampacchio", - }, - image: - "https://s4.anilist.co/file/anilistcdn/staff/large/default.jpg", - }, - ], - }, - { - id: 134331, - role: "SUPPORTING", - name: { - first: "Kobachi", - last: "Osaragi", - full: "Kobachi Osaragi", - native: "大仏こばち", - userPreferred: "Kobachi Osaragi", - }, - image: - "https://s4.anilist.co/file/anilistcdn/character/large/b134331-pGWnRI42SZAl.png", - voiceActors: [ - { - id: 100250, - language: "Japanese", - name: { - first: "Rina", - last: "Hidaka", - full: "Rina Hidaka", - native: "日高里菜", - userPreferred: "Rina Hidaka", - }, - image: - "https://s4.anilist.co/file/anilistcdn/staff/large/n100250-JhNN2vxQ311M.png", - }, - { - id: 184295, - language: "Spanish", - name: { - first: "Jocelyn", - last: "Robles", - full: "Jocelyn Robles", - native: "Jocelyn Robles Guillén", - userPreferred: "Jocelyn Robles", - }, - image: - "https://s4.anilist.co/file/anilistcdn/staff/large/n184295-SGIBinFSleRp.png", - }, - { - id: 262684, - language: "Portuguese", - name: { - first: "Vanessa", - last: "Scorsoni", - full: "Vanessa Scorsoni", - native: null, - userPreferred: "Vanessa Scorsoni", - }, - image: - "https://s4.anilist.co/file/anilistcdn/staff/large/default.jpg", - }, - { - id: 275101, - language: "French", - name: { - first: "Isabelle", - last: "Desplantes", - full: "Isabelle Desplantes", - native: null, - userPreferred: "Isabelle Desplantes", - }, - image: - "https://s4.anilist.co/file/anilistcdn/staff/large/n275101-ggiPg7JGL3A0.jpg", - }, - { - id: 290589, - language: "German", - name: { - first: "Peggy-Sue", - last: "Emmler", - full: "Peggy-Sue Emmler", - native: null, - userPreferred: "Peggy-Sue Emmler", - }, - image: - "https://s4.anilist.co/file/anilistcdn/staff/large/default.jpg", - }, - ], - }, - { - id: 134328, - role: "SUPPORTING", - name: { - first: "Maki", - last: "Shijo", - full: "Maki Shijo", - native: "四条眞妃", - userPreferred: "Maki Shijo", - }, - image: - "https://s4.anilist.co/file/anilistcdn/character/large/b134328-s3cEgqb5MEbh.png", - voiceActors: [ - { - id: 124390, - language: "Japanese", - name: { - first: "Kana", - last: "Ichinose", - full: "Kana Ichinose", - native: "市ノ瀬加那", - userPreferred: "Kana Ichinose", - }, - image: - "https://s4.anilist.co/file/anilistcdn/staff/large/n124390-eFIxDGxC7Vy8.png", - }, - { - id: 217017, - language: "English", - name: { - first: "Hope", - last: "Endrenyi", - full: "Hope Endrenyi", - native: null, - userPreferred: "Hope Endrenyi", - }, - image: - "https://s4.anilist.co/file/anilistcdn/staff/large/n217017-uyEcKBtmPYAc.jpg", - }, - { - id: 226232, - language: "Spanish", - name: { - first: "Susana", - last: "Cohe", - full: "Susana Cohe", - native: "Susana Cortés Hernández", - userPreferred: "Susana Cohe", - }, - image: - "https://s4.anilist.co/file/anilistcdn/staff/large/n226232-FYSd01DLJ5Qy.png", - }, - { - id: 254216, - language: "Portuguese", - name: { - first: "Colombina", - last: "Rivas", - full: "Colombina Rivas", - native: null, - userPreferred: "Colombina Rivas", - }, - image: - "https://s4.anilist.co/file/anilistcdn/staff/large/default.jpg", - }, - { - id: 277477, - language: "German", - name: { - first: "Ness", - last: "Gerung", - full: "Ness Gerung", - native: null, - userPreferred: "Ness Gerung", - }, - image: - "https://s4.anilist.co/file/anilistcdn/staff/large/default.jpg", - }, - ], - }, - { - id: 177065, - role: "SUPPORTING", - name: { - first: "Daichi", - last: "Fujiwara", - full: "Daichi Fujiwara", - native: "藤原大地", - userPreferred: "Daichi Fujiwara", - }, - image: - "https://s4.anilist.co/file/anilistcdn/character/large/b177065-CV1Ok4h74srn.jpg", - voiceActors: [ - { - id: 102664, - language: "Japanese", - name: { - first: "Hirohiko", - last: "Kakegawa", - full: "Hirohiko Kakegawa", - native: "掛川裕彦", - userPreferred: "Hirohiko Kakegawa", - }, - image: - "https://s4.anilist.co/file/anilistcdn/staff/large/n102664-hDenVljsoR8F.png", - }, - { - id: 111673, - language: "Spanish", - name: { - first: "Manuel", - last: "Campuzano", - full: "Manuel Campuzano", - native: "Manuel Campuzano Márquez", - userPreferred: "Manuel Campuzano", - }, - image: - "https://s4.anilist.co/file/anilistcdn/staff/large/n111673-WnvtApo3SNny.png", - }, - { - id: 254976, - language: "Portuguese", - name: { - first: "Reinaldo", - last: "Rodriguez", - full: "Reinaldo Rodriguez", - native: null, - userPreferred: "Reinaldo Rodriguez", - }, - image: - "https://s4.anilist.co/file/anilistcdn/staff/large/n254976-XSajLo3G3TXu.jpg", - }, - ], - }, - { - id: 276519, - role: "SUPPORTING", - name: { - first: "Masaru", - last: "Kobayashi", - full: "Masaru Kobayashi", - native: "小林マサル", - userPreferred: "Masaru Kobayashi", - }, - image: - "https://s4.anilist.co/file/anilistcdn/character/large/b276519-dha4odF2TNMN.jpg", - voiceActors: [ - { - id: 119871, - language: "Japanese", - name: { - first: "Kouhei", - last: "Amasaki", - full: "Kouhei Amasaki", - native: "天崎滉平", - userPreferred: "Kouhei Amasaki", - }, - image: - "https://s4.anilist.co/file/anilistcdn/staff/large/n119871-jbrrS09NU0CO.png", - }, - { - id: 116839, - language: "Spanish", - name: { - first: "Miguel Ángel", - last: "Ruiz", - full: "Miguel Ángel Ruiz", - native: null, - userPreferred: "Miguel Ángel Ruiz", - }, - image: - "https://s4.anilist.co/file/anilistcdn/staff/large/n116839-9EnQTp30Vy4R.png", - }, - { - id: 193392, - language: "Portuguese", - name: { - first: "Dudu", - last: "Fevereiro", - full: "Dudu Fevereiro", - native: null, - userPreferred: "Dudu Fevereiro", - }, - image: - "https://s4.anilist.co/file/anilistcdn/staff/large/default.jpg", - }, - ], - }, - { - id: 126144, - role: "SUPPORTING", - name: { - first: "Kei", - last: "Shirogane", - full: "Kei Shirogane", - native: "白銀圭", - userPreferred: "Kei Shirogane", - }, - image: - "https://s4.anilist.co/file/anilistcdn/character/large/b126144-4fc2sYUVFKOJ.png", - voiceActors: [ - { - id: 126963, - language: "Japanese", - name: { - first: "Sayumi", - last: "Suzushiro", - full: "Sayumi Suzushiro", - native: "鈴代紗弓", - userPreferred: "Sayumi Suzushiro", - }, - image: - "https://s4.anilist.co/file/anilistcdn/staff/large/n126963-0LMbvLzSSADw.jpg", - }, - { - id: 129302, - language: "English", - name: { - first: "Heather", - last: "Walker", - full: "Heather Walker", - native: null, - userPreferred: "Heather Walker", - }, - image: - "https://s4.anilist.co/file/anilistcdn/staff/large/n129302-wNSfYBozMHlY.jpg", - }, - { - id: 201444, - language: "Spanish", - name: { - first: "Amanda", - last: "Hinojosa", - full: "Amanda Hinojosa", - native: null, - userPreferred: "Amanda Hinojosa", - }, - image: - "https://s4.anilist.co/file/anilistcdn/staff/large/n201444-UuM4e0e04Wk0.png", - }, - { - id: 199070, - language: "Portuguese", - name: { - first: "Nathalia", - last: "Guillen", - full: "Nathalia Guillen", - native: null, - userPreferred: "Nathalia Guillen", - }, - image: - "https://s4.anilist.co/file/anilistcdn/staff/large/n199070-yBeJgzjLB8Q1.png", - }, - { - id: 274233, - language: "French", - name: { - first: "Clotilde", - last: "Verry", - full: "Clotilde Verry", - native: null, - userPreferred: "Clotilde Verry", - }, - image: - "https://s4.anilist.co/file/anilistcdn/staff/large/n274233-WXiPUGxyei2M.jpg", - }, - { - id: 110555, - language: "German", - name: { - first: "Josephine", - last: "Schmidt", - full: "Josephine Schmidt", - native: null, - userPreferred: "Josephine Schmidt", - }, - image: "https://s4.anilist.co/file/anilistcdn/staff/large/15555.jpg", - }, - ], - }, - ], - relations: [ - { - id: 86635, - relationType: "ADAPTATION", - malId: 90125, - title: { - romaji: "Kaguya-sama wa Kokurasetai: Tensaitachi no Renai Zunousen", - english: "Kaguya-sama: Love is War", - native: "かぐや様は告らせたい~天才たちの恋愛頭脳戦~", - userPreferred: - "Kaguya-sama wa Kokurasetai: Tensaitachi no Renai Zunousen", - }, - status: "Completed", - episodes: null, - image: - "https://s4.anilist.co/file/anilistcdn/media/manga/cover/large/bx86635-EdaLQmsn86Fy.png", - color: "#d61a35", - type: "MANGA", - cover: - "https://s4.anilist.co/file/anilistcdn/media/manga/banner/86635-5lYiOxKzZYZh.jpg", - rating: 88, - }, - { - id: 112641, - relationType: "PREQUEL", - malId: 40591, - title: { - romaji: "Kaguya-sama wa Kokurasetai?: Tensaitachi no Renai Zunousen", - english: "Kaguya-sama: Love is War?", - native: "かぐや様は告らせたい?~天才たちの恋愛頭脳戦~", - userPreferred: - "Kaguya-sama wa Kokurasetai?: Tensaitachi no Renai Zunousen", - }, - status: "Completed", - episodes: 12, - image: - "https://s4.anilist.co/file/anilistcdn/media/anime/cover/large/bx112641-zoGC8d6FaPXU.jpg", - color: "#DAD797", - type: "TV", - cover: - "https://s4.anilist.co/file/anilistcdn/media/anime/banner/112641-mKZe0zng0ndV.jpg", - rating: 86, - }, - { - id: 151384, - relationType: "SEQUEL", - malId: 52198, - title: { - romaji: "Kaguya-sama wa Kokurasetai: First Kiss wa Owaranai", - english: "Kaguya-sama: Love is War -The First Kiss That Never Ends-", - native: "かぐや様は告らせたい -ファーストキッスは終わらない-", - userPreferred: "Kaguya-sama wa Kokurasetai: First Kiss wa Owaranai", - }, - status: "Completed", - episodes: 4, - image: - "https://s4.anilist.co/file/anilistcdn/media/anime/cover/large/bx151384-gv0q8wOE6D58.jpg", - color: "#e45d78", - type: "TV", - cover: - "https://s4.anilist.co/file/anilistcdn/media/anime/banner/151384-JybfIpHr2gx6.jpg", - rating: 90, - }, - ], - mappings: { - mal: 43608, - anidb: 15806, - kitsu: 43691, - anilist: 125367, - thetvdb: 354198, - anisearch: 15681, - livechart: 10191, - "notify.moe": "tgrxrLtMR", - "anime-planet": "kaguya-sama-love-is-war-ultra-romantic", - }, - episodes: [ - { - id: "kaguya-sama-wa-kokurasetai-ultra-romantic-episode-1", - title: - "Miko Iino Wants to Be Soothed / Kaguya Doesn’t Realize / Chika Fujiwara Wants to Battle", - description: - "After finally making her long awaited smartphone debut, Kaguya restlessly contemplates over how to respond to Shirogane's LINE message. As Hayasaka watches over, she realizes that Kaguya is not aware of the \"read receipt\" function. If Kaguya lies by responding that she just read the message, she runs the risk of exposing the truth that she had been obsessively staring at Shirogane's message with glee. Weighing out her options to best serve her mistress, Hayasaka decides to explain LINE's functions when suddenly a new problem emerges.", - number: 1, - image: - "https://artworks.thetvdb.com/banners/v4/episode/7689771/screencap/624b2c2cd5d87.jpg", - airDate: "2022-04-09T00:00:00.000Z", - }, - { - id: "kaguya-sama-wa-kokurasetai-ultra-romantic-episode-2", - title: - "Miyuki Shirogane Wants to Mediate / Kaguya Wants to Distract Him / Kaguya Preemptively Strikes", - description: - "Kaguya makes a big fuss when she learns that Shirogane was invited to a karaoke group date and orders Hayasaka to remove him from the venue. Dissatisfied with such treatment yet unable to refuse her mistress' instructions, Hayasaka joins the party as Shirogane's acquaintance Smithee A. Herthaka and plans to ruin the atmosphere by airing out that Shirogane once dumped her. And although she manages to get Shirogane out, a rebellious spirit against Kaguya has begun to grow...", - number: 2, - image: - "https://artworks.thetvdb.com/banners/v4/episode/9090730/screencap/6253f296e7a1f.jpg", - airDate: "2022-04-16T00:00:00.000Z", - }, - { - id: "kaguya-sama-wa-kokurasetai-ultra-romantic-episode-3", - title: - "Nagisa Kashiwagi Wants to Kill / Maki Shijo Wants to Take Action / Miyuki Shirogane Wants to Be Believed", - description: - "Shirogane accidentally steps on Maki Shijo, a female student who had collapsed on campus, and takes care of her in the student council room. Apparently, she has suffered from the sorrows of love. When Maki discusses her situation with him, her expression changes from high-spirited, to anxious, to explosively angry, to tearful. After witnessing such an intense range of human emotion, for some reason Shirogane was struck by a strong sense of déjà vu. What on earth was this feeling?", - number: 3, - image: - "https://artworks.thetvdb.com/banners/v4/episode/9090731/screencap/625d2c24dd9ab.jpg", - airDate: "2022-04-23T00:00:00.000Z", - }, - { - id: "kaguya-sama-wa-kokurasetai-ultra-romantic-episode-4", - title: - 'Kaguya Shinomiya\'s Impossible Demand: "A Cowrie a Swallow Gave Birth To" Part 1 / Yu Ishigami Wants to Prove Himself Worthy / Chika Fujiwara Wants to Stay Over', - description: - "After their second semester final exams end, there are plans for a sleepover at Kaguya's house. But Shirogane and the others are unable to come, leaving Fujiwara as the only one who can join. While barley glancing at an upset Kaguya, Fujiwara gets excited about the totally hot butler Mr. Herthaka without realizing it's Hayasaka dressed as a man. That night as the girl talk unfolds at the pajama party, a sleep-deprived Kaguya takes on a strange mood before anyone can notice. With that energy, she calls Shirogane and ends up asking outrageous questions.", - number: 4, - image: - "https://artworks.thetvdb.com/banners/v4/episode/9090732/screencap/62668cf1b31e7.jpg", - airDate: "2022-04-30T00:00:00.000Z", - }, - { - id: "kaguya-sama-wa-kokurasetai-ultra-romantic-episode-5", - title: - "Chika Fujiwara Wants to Beat a Rhythm / Ai Hayasaka Wants to Talk / Maki Shijo Wants Some Help", - description: - "Shirogane couldn't tell Ms. Herthaka that sometimes humans need to expose their weaknesses and endeavors to practice rapping which should be able to convey that. But his rapping skills are catastrophic. Fujiwara, who previously taught him singing and dancing, tags along for practice. But she's a total amateur when it comes to rap that she's on the level where she's convinced it's all simple-minded puns. So Fujiwara begins special training. With the advice from Shirogane who has overflowing knowledge on rap music, she rapidly improves... But something is still missing!", - number: 5, - image: - "https://artworks.thetvdb.com/banners/v4/episode/9090733/screencap/626fb02caaf90.jpg", - airDate: "2022-05-07T00:00:00.000Z", - }, - { - id: "kaguya-sama-wa-kokurasetai-ultra-romantic-episode-6", - title: - "The Student Council Wants to Move Forward / Miyuki Shirogane Wants to Make Her Confess, Part 2 / Miyuki Shirogane Wants to Make Her Confess, Part 3", - description: - "Parent-Teacher Conferences to determine each student's future begin at Shuchiin Academy. One wishes to continue in the academy's university, one is considering taking exams for a different university – both will declare their future plans. Fujiwara, who is joined by her father, jokes around and expresses her desire to go to a university outside of the academy. Meanwhile, Kaguya's father didn't show up, but she informs them just as her parents instructed – that she will continue to Shuchiin's university. While Maki, Hayasaka, and the others each discuss their dreams, last but not least is Shirogane who is taking the exam. In a clear and confident tone, he declares the road he must proceed. And that answer is...!", - number: 6, - image: - "https://artworks.thetvdb.com/banners/v4/episode/9090734/screencap/627ccc3d55ab1.jpg", - airDate: "2022-05-14T00:00:00.000Z", - }, - { - id: "kaguya-sama-wa-kokurasetai-ultra-romantic-episode-7", - title: - "Miko Iino Can't Love, Part 1 / Students Wish to Discuss the Culture Festival / Miyuki Shirogane Wants to Blow It Up", - description: - "While all the classes were consumed in preparation for Shuchiin Academy's Hoshin Culture Festival, Shirogane and those from Class 2-B were working hard at making balloon art. As Fujiwara delicately puts finishing touches on a cute balloon bear, the clumsy Shirogane keeps popping them no matter how many times he tries. The sound of balloons popping echoes sadly in the classroom. But Fujiwara, who has joined Shirogane's special training many times up until now, hardens her heart and decides not to help this time. To overcome this without the help of others, Shirogane heads to the student council room for practice. However, Kaguya is in the room...", - number: 7, - image: - "https://artworks.thetvdb.com/banners/v4/episode/9090735/screencap/6282238070200.jpg", - airDate: "2022-05-21T00:00:00.000Z", - }, - { - id: "kaguya-sama-wa-kokurasetai-ultra-romantic-episode-8", - title: - "Kei Shirogane Wants to Show Off / About Kaguya Shinomiya, Part 2 / Kaguya Wants to Confess", - description: - "Kaguya learns about the romantic legend that giving a heart-shaped gift at the Culture Festival brings eternal love. She wonders if there is a way she can give Shirogane a heart-shaped gift without getting caught. But her plans are full of errors, and she panics. She becomes sick of herself as a cowardly person who can only come up with negative ideas. There, Shirogane, exhausted from preparing for the Culture Festival, shows up. As Kaguya sees Shirogane doing his best for everyone as the student council president, she...", - number: 8, - image: - "https://artworks.thetvdb.com/banners/v4/episode/9090736/screencap/628b6093331e6.jpg", - airDate: "2022-05-28T00:00:00.000Z", - }, - { - id: "kaguya-sama-wa-kokurasetai-ultra-romantic-episode-9", - title: - "Spring of First Year / Kaguya's Culture Festival / Yu Ishigami's Culture Festival", - description: - "One week after enrolling in Shuchiin Academy as a special scholarship student, Shirogane had already regretted that he had come to a school he should not have. The students around him were elites born into famous families. Shirogane, who is from a modest household and enrolled from a school outside of Shuchiin's track, couldn't even find a friend to eat with, so he quietly kills time away from the cafeteria. Just as Shirogane's miserable emotions explode, an upperclassman with a student cap appears in front of him. A shining golden fourragere lays across his chest as proof of student council president. And he says that he's come to recruit Shirogane into the student council.", - number: 9, - image: - "https://artworks.thetvdb.com/banners/v4/episode/9090737/screencap/6294a898e73cb.jpg", - airDate: "2022-06-04T00:00:00.000Z", - }, - { - id: "kaguya-sama-wa-kokurasetai-ultra-romantic-episode-10", - title: - "Kozue Makihara Wants to Have Fun / Chika Fujiwara Wants to Unmask / Miyuki Shirogane's Culture Festival", - description: - 'Ishigami, who succeeded in inviting Tsubame on a Culture Festival date, browses around campus exhibits in an attempt to shorten the distance between the two. In the end, it didn\'t go as well as hoped. But when he tried to express his everyday feelings of gratitude for the upperclassman he feels indebted to, it caused an unexpected uproar. Shirogane was astonished after witnessing the unexpected event. Gripped by the fear that his secretly planned "Make Shinomiya Confess Plan" will be ruined, he sinks into despair after thinking too hard about every detail.', - number: 10, - image: - "https://artworks.thetvdb.com/banners/v4/episode/9090738/screencap/629dd17cc3013.jpg", - airDate: "2022-06-11T00:00:00.000Z", - }, - { - id: "kaguya-sama-wa-kokurasetai-ultra-romantic-episode-11", - title: - "Miyuki Shirogane Wants to Make Her Confess, Part 4 / Tsubame Koyasu Wants to Say No / Miyuki Shirogane Wants to Make Her Confess, Part 5", - description: - "Invited to walk around the culture festival together by Shirogane, Kaguya is unable to hide her surprise at this sudden plot twist. She lightly joked that maybe he was affected by the festival's atmosphere, but Shirogane never dropped his serious expression. Compelled by such intensity, Kaguya decided to walk around the school together. Everyone around them gossips that they are on a date as Kaguya blushes. But while they enjoy visiting a love fortune-teller, food shops and live music, Kaguya feels true happiness. From the depths of her heart, she wishes that each day could continue just like this.", - number: 11, - image: - "https://artworks.thetvdb.com/banners/v4/episode/9090739/screencap/62a75222075ba.jpg", - airDate: "2022-06-18T00:00:00.000Z", - }, - { - id: "kaguya-sama-wa-kokurasetai-ultra-romantic-episode-12", - title: - "Kaguya Wants to Confess, Part 2 / Kaguya Wants to Confess, Part 3 / Dual Confessions, Part 1", - description: - "The moment the culture festival reached its finale, the jewel object made by Shirogane was stolen by a phantom thief who calls himself Arsène. Kaguya and the others headed to the roof where the phantom thief keeps appearing, but there was no one there. Fujiwara, who transformed into a genius detective, struggles to solve the mystery behind the calling card and uncover the thief's true identity. But Kaguya, left behind at the scene of the crime, had begun to figure out the criminal. The problem is the location. Kaguya traced the phantom thief's line of thinking and headed to where he is now...", - number: 12, - image: - "https://artworks.thetvdb.com/banners/v4/episode/9090740/screencap/62b5f3872085a.jpg", - airDate: "2022-06-25T00:00:00.000Z", - }, - { - id: "kaguya-sama-wa-kokurasetai-ultra-romantic-episode-13", - title: "Dual Confessions, Part 2 / The Shuchiin Afterparty", - description: - "Shroud in a cape and dressed in the guise of the phantom thief Arsène, Shirogane waited for Kaguya's arrival atop the clock tower roof overlooking Shuchiin. When asked why he would do such a thing, Shirogane answered that there was something he wanted to show Kaguya. The festival's afterparty has already begun as the sun set over this school and the students could be seen encircling and enjoying the bonfire. While the emotions that could not be expressed with words mingled between Shirogane and Kaguya's hearts... Shirogane carried out his ultra-romantic operation!!", - number: 13, - image: - "https://artworks.thetvdb.com/banners/v4/episode/9231033/screencap/62b5f41750c72.jpg", - airDate: "2022-06-25T00:00:00.000Z", - }, - ], -}; diff --git a/components/test/player.js b/components/test/player.js deleted file mode 100644 index 3f650bd..0000000 --- a/components/test/player.js +++ /dev/null @@ -1,11 +0,0 @@ -import "vidstack/styles/base.css"; - -import { MediaOutlet, MediaPlayer } from "@vidstack/react"; - -export default function StackPlayer() { - return ( - - - - ); -} diff --git a/components/underConst.js b/components/underConst.js deleted file mode 100644 index a6d9e80..0000000 --- a/components/underConst.js +++ /dev/null @@ -1,22 +0,0 @@ -import Footer from "./footer"; -import StickerWIP from "./media/sticker"; -import Navbar from "./navbar"; - -function UnderConstruction() { - return ( - <> -
-
-
- -
-

- {"> Sabar yahhh, pagenya masih dibikin..."} {":)"} -

-
-
- - ); -} - -export default UnderConstruction; diff --git a/components/videoPlayer.js b/components/videoPlayer.js index 092f53a..c0d551d 100644 --- a/components/videoPlayer.js +++ b/components/videoPlayer.js @@ -10,6 +10,7 @@ export default function VideoPlayer({ progress, session, aniId, + stats, }) { const [url, setUrl] = useState(); const [source, setSource] = useState([]); @@ -61,7 +62,7 @@ export default function VideoPlayer({ option={{ url: `${url}`, quality: [source], - // autoplay: true, + autoplay: true, screenshot: true, type: "m3u8", }} @@ -88,7 +89,7 @@ export default function VideoPlayer({ if (percentage >= 0.9) { // use >= instead of > - markProgress(aniId, progress); + markProgress(aniId, progress, stats); } else { return; } @@ -117,7 +118,7 @@ export default function VideoPlayer({ }, }); - console.log(res.status); + // console.log(res.status); const title = titles; const prevDataStr = localStorage.getItem("lastPlayed") || "[]"; -- cgit v1.2.3