58 lines
2.0 KiB
Kotlin
58 lines
2.0 KiB
Kotlin
package eu.kanade.tachiyomi.extension.en.manhwahentaime
|
|
|
|
import eu.kanade.tachiyomi.annotations.Nsfw
|
|
import eu.kanade.tachiyomi.multisrc.madara.Madara
|
|
|
|
@Nsfw
|
|
class ManhwahentaiMe : Madara("Manhwahentai.me", "https://manhwahentai.me", "en") {
|
|
|
|
override fun getGenreList() = listOf(
|
|
Genre("Action", "action"),
|
|
Genre("Adult", "adult"),
|
|
Genre("Adventure", "adventure"),
|
|
Genre("Comedy", "comedy"),
|
|
Genre("Complete", "complete"),
|
|
Genre("Cooking", "cooking"),
|
|
Genre("Doujinshi", "doujinshi"),
|
|
Genre("Drama", "drama"),
|
|
Genre("Ecchi", "ecchi"),
|
|
Genre("Fanstasy", "fantasy"),
|
|
Genre("Gender bender", "gender-bender"),
|
|
Genre("Gossip", "gossip"),
|
|
Genre("Harem", "harem"),
|
|
Genre("Historical", "historical"),
|
|
Genre("Horror", "horror"),
|
|
Genre("Isekai", "isekai"),
|
|
Genre("Josei", "josei"),
|
|
Genre("Live action", "live-action"),
|
|
Genre("Manga", "manga"),
|
|
Genre("Manhua", "manhua"),
|
|
Genre("Manhwa", "manhwa"),
|
|
Genre("Martial arts", "martial-arts"),
|
|
Genre("Mature", "mature"),
|
|
Genre("Mecha", "mecha"),
|
|
Genre("Medical", "medical"),
|
|
Genre("Mystery", "mystery"),
|
|
Genre("One shot", "one-shot"),
|
|
Genre("Psychological", "psychological"),
|
|
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("Supernatural", "supernatural"),
|
|
Genre("Thriller", "thriller"),
|
|
Genre("Tragedy", "tragedy"),
|
|
Genre("Webtoon", "webtoon"),
|
|
Genre("Webtoons", "webtoons"),
|
|
Genre("Yaoi", "yaoi"),
|
|
Genre("Yuri", "yuri"),
|
|
)
|
|
}
|