81 lines
2.9 KiB
Kotlin
81 lines
2.9 KiB
Kotlin
package eu.kanade.tachiyomi.extension.en.mangatuli
|
|
|
|
import eu.kanade.tachiyomi.annotations.Nsfw
|
|
import eu.kanade.tachiyomi.lib.ratelimit.RateLimitInterceptor
|
|
import eu.kanade.tachiyomi.multisrc.madara.Madara
|
|
import okhttp3.OkHttpClient
|
|
import java.util.concurrent.TimeUnit
|
|
|
|
@Nsfw
|
|
class MangaTuli : Madara("MangaTuli", "https://mangatuli.com", "en") {
|
|
|
|
override val client: OkHttpClient = super.client.newBuilder()
|
|
.addInterceptor(RateLimitInterceptor(1, 1, TimeUnit.SECONDS))
|
|
.build()
|
|
|
|
override fun getGenreList() = listOf(
|
|
Genre("4-koma", "4-koma"),
|
|
Genre("Action", "action"),
|
|
Genre("Adult", "adult"),
|
|
Genre("Adventure", "adventure"),
|
|
Genre("Chinese", "chinese"),
|
|
Genre("Comedy", "comedy"),
|
|
Genre("Cooking", "cooking"),
|
|
Genre("Crime", "crime"),
|
|
Genre("Crossdressing", "crossdressing"),
|
|
Genre("Demons", "demons"),
|
|
Genre("Detective", "detective"),
|
|
Genre("Doujinshi", "doujinshi"),
|
|
Genre("Drama", "drama"),
|
|
Genre("Ecchi", "ecchi"),
|
|
Genre("English", "english"),
|
|
Genre("Fanstasy", "fantasy"),
|
|
Genre("Full color", "full-color"),
|
|
Genre("Game", "game"),
|
|
Genre("Gender bender", "gender-bender"),
|
|
Genre("Harem", "harem"),
|
|
Genre("Historical", "historical"),
|
|
Genre("Horror", "horror"),
|
|
Genre("Isekai", "isekai"),
|
|
Genre("Josei", "josei"),
|
|
Genre("Korean", "korean"),
|
|
Genre("Magic", "magic"),
|
|
Genre("Magical girls", "magical-girls"),
|
|
Genre("Manga", "manga"),
|
|
Genre("Manhua", "manhua"),
|
|
Genre("Manhwa", "manhwa"),
|
|
Genre("Martial arts", "martial-arts"),
|
|
Genre("Mature", "mature"),
|
|
Genre("Mecha", "mecha"),
|
|
Genre("Medical", "medical"),
|
|
Genre("Military", "military"),
|
|
Genre("Music", "music"),
|
|
Genre("Mystery", "mystery"),
|
|
Genre("One shot", "one-shot"),
|
|
Genre("Psychological", "psychological"),
|
|
Genre("Reincarnation", "reincarnation"),
|
|
Genre("Romance", "romance"),
|
|
Genre("School Life", "school-life"),
|
|
Genre("Sci-fi", "sci-fi"),
|
|
Genre("Seinen", "seinen"),
|
|
Genre("Shoujo", "shoujo"),
|
|
Genre("Shoujo ai", "shoujo-ai"),
|
|
Genre("Shounen", "shounen"),
|
|
Genre("Shounen ai", "shounen-ai"),
|
|
Genre("Slice of Life", "slice-of-life"),
|
|
Genre("Smut", "smut"),
|
|
Genre("Sports", "sports"),
|
|
Genre("Super power", "super-power"),
|
|
Genre("Superhero", "superhero"),
|
|
Genre("Supernatural", "supernatural"),
|
|
Genre("Thriller", "thriller"),
|
|
Genre("Traditional games", "traditional-games"),
|
|
Genre("Tragedy", "tragedy"),
|
|
Genre("Webtoon", "webtoon"),
|
|
Genre("Webtoons", "webtoons"),
|
|
Genre("Wuxia", "wuxia"),
|
|
Genre("Yaoi", "yaoi"),
|
|
Genre("Yuri", "yuri"),
|
|
)
|
|
}
|