Johannes Joens b2d8775f19
MangaCatalog multisrc extension (#6399)
* Create Ww3Read.kt

* Added Ww3ReadGenerator.kt

* Added Overrieds and icon

* Added More Sources

https://ww1.readjujutsukaisen.com
https://ww1.readtowerofgod.com
https://ww2.readhxh.com
https://readsololeveling.org
https://ww3.readneverland.com

* Update Ww3ReadGenerator.kt

* Removed old Names

* Added files with new name

* Removed files with old name

* Added files with new name
2021-04-04 16:34:03 -04:00

18 lines
948 B
Kotlin

package eu.kanade.tachiyomi.extension.en.readtokyoghoulretokyoghoulmangaonline
import eu.kanade.tachiyomi.multisrc.mangacatalog.MangaCatalog
import eu.kanade.tachiyomi.source.model.MangasPage
import eu.kanade.tachiyomi.util.asJsoup
class ReadTokyoGhoulReTokyoGhoulMangaOnline : MangaCatalog("Read Tokyo Ghoul Re & Tokyo Ghoul Manga Online", "https://ww8.tokyoghoulre.com", "en") {
override val sourceList = listOf(
Pair("Tokyo Ghoul", "$baseUrl/manga/tokyo-ghoul/"),
Pair("Tokyo Ghoul:re", "$baseUrl/manga/tokyo-ghoulre/"),
Pair("TG Jack", "$baseUrl/manga/tokyo-ghoul-jack/"),
Pair("TGre Colored", "$baseUrl/manga/tokyo-ghoulre-colored/"),
Pair("Gorilla", "$baseUrl/manga/this-gorilla-will-die-in-1-day/"),
Pair("ArtBook", "$baseUrl/manga/tokyo-ghoul-zakki/"),
Pair("TG Light Novel", "$baseUrl/manga/tokyo-ghoul-re-light-novels/")
).sortedBy { it.first }.distinctBy { it.second }
}