Add NgamenKomik (#4693)

* Add NgamenKomik

* Add some filter

* Add filter separator

* Remove NSFW

* Fix missing genres
This commit is contained in:
TheKingTermux 2024-08-20 20:00:11 +07:00 committed by Draff
parent 67fcfb842f
commit cfd6629d98
No known key found for this signature in database
GPG Key ID: E8A89F3211677653
7 changed files with 61 additions and 0 deletions

View File

@ -0,0 +1,9 @@
ext {
extName = 'NgamenKomik'
extClass = '.NgamenKomik'
themePkg = 'zeistmanga'
baseUrl = 'https://ngamenkomik05.blogspot.com'
overrideVersionCode = 0
}
apply from: "$rootDir/common.gradle"

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 8.9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 14 KiB

View File

@ -0,0 +1,52 @@
package eu.kanade.tachiyomi.extension.id.ngamenkomik
import eu.kanade.tachiyomi.multisrc.zeistmanga.Genre
import eu.kanade.tachiyomi.multisrc.zeistmanga.Status
import eu.kanade.tachiyomi.multisrc.zeistmanga.Type
import eu.kanade.tachiyomi.multisrc.zeistmanga.ZeistManga
import eu.kanade.tachiyomi.network.interceptor.rateLimit
class NgamenKomik : ZeistManga("NgamenKomik", "https://ngamenkomik05.blogspot.com", "id") {
override val client = super.client.newBuilder()
.rateLimit(3)
.build()
// ============================== Filters ===============================
override val hasFilters = true
override val hasLanguageFilter = false
override fun getTypeList() = listOf(
Type("Semua", ""),
Type("Manhua", "Manhua"),
Type("Manhwa", "Manhwa"),
)
override fun getStatusList() = listOf(
Status("Semua", ""),
Status("Ongoing", "Ongoing"),
Status("Completed", "Completed"),
)
override fun getGenreList() = listOf(
Genre("Action", "Action"),
Genre("Adventure", "Adventure"),
Genre("Comedy", "Comedy"),
Genre("Drama", "Drama"),
Genre("Ecchi", "Ecchi"),
Genre("Fantasy", "Fantasy"),
Genre("Harem", "Harem"),
Genre("Horror", "Horror"),
Genre("Isekai", "Isekai"),
Genre("Magic", "Magic"),
Genre("Martial Arts", "Martial Arts"),
Genre("Mystery", "Mystery"),
Genre("Reincarnation", "Reincarnation"),
Genre("Romance", "Romance"),
Genre("School Life", "School Life"),
Genre("Shounen", "Shounen"),
Genre("Slice of Life", "Slice of Life"),
Genre("Supernatural", "Supernatural"),
Genre("Thriller", "Thriller"),
)
}