2021-02-07 15:37:31 +00:00
|
|
|
package eu.kanade.tachiyomi.extension.en.aloalivn
|
|
|
|
|
|
|
|
import eu.kanade.tachiyomi.multisrc.madara.Madara
|
|
|
|
|
|
|
|
class Aloalivn : Madara("Aloalivn", "https://aloalivn.com", "en") {
|
2021-02-20 16:29:36 +00:00
|
|
|
override fun getGenreList() = listOf(
|
|
|
|
Genre("Action", "action"),
|
|
|
|
Genre("Adult", "adult"),
|
|
|
|
Genre("Adventure", "adventure"),
|
|
|
|
Genre("Anime", "anime"),
|
|
|
|
Genre("Cartoon", "cartoon"),
|
|
|
|
Genre("Comedy", "comedy"),
|
|
|
|
Genre("Comic", "comic"),
|
|
|
|
Genre("Cooking", "cooking"),
|
|
|
|
Genre("Detective", "detective"),
|
|
|
|
Genre("Doujinshi", "doujinshi"),
|
|
|
|
Genre("Drama", "drama"),
|
|
|
|
Genre("Ecchi", "ecchi"),
|
|
|
|
Genre("Fantasy", "fantasy"),
|
|
|
|
Genre("Gender bender", "gender-bender"),
|
|
|
|
Genre("Harem", "harem"),
|
|
|
|
Genre("Historical", "historical"),
|
|
|
|
Genre("Horror", "horror"),
|
|
|
|
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("Mystery", "mystery"),
|
|
|
|
Genre("One shot", "one-shot"),
|
|
|
|
Genre("Psychological", "psychological"),
|
|
|
|
Genre("Romance", "romance"),
|
|
|
|
Genre("School Life", "school-life"),
|
|
|
|
Genre("Si-fi", "si-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("Soft Yaoi", "soft-yaoi"),
|
|
|
|
Genre("Soft Yuri", "soft-yuri"),
|
|
|
|
Genre("Sports", "sports"),
|
|
|
|
Genre("Supernatural", "supernatural"),
|
|
|
|
Genre("Tragedy", "tragedy"),
|
|
|
|
Genre("Webtoon", "webtoon"),
|
|
|
|
Genre("Yaoi", "yaoi"),
|
|
|
|
Genre("Yuri", "yuri"),
|
|
|
|
)
|
2021-02-07 15:37:31 +00:00
|
|
|
}
|