Initial commit

This commit is contained in:
FourTOne5
2024-01-09 04:12:39 +06:00
commit 600c345dfe
8593 changed files with 150590 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
package eu.kanade.tachiyomi.extension.en.readtowerofgodmanhwamangaonline
import eu.kanade.tachiyomi.multisrc.mangacatalog.MangaCatalog
class ReadTowerOfGodManhwaMangaOnline : MangaCatalog("Read Tower of God Manhwa Manga Online", "https://ww1.readtowerofgod.com", "en") {
override val sourceList = listOf(
Pair("Season 1", "$baseUrl/manga/tower-of-god-season-1/"),
Pair("Season 2", "$baseUrl/manga/tower-of-god-season-2/"),
Pair("Season 3", "$baseUrl/manga/tower-of-god-season-3/"),
Pair("RAW", "$baseUrl/manga/tower-of-god-spoilers-raw/"),
Pair("SIU Blog Postd", "$baseUrl/manga/siu-blog-post-translation/"),
).sortedBy { it.first }.distinctBy { it.second }
}