Add NgamenKomik (#4693)
* Add NgamenKomik * Add some filter * Add filter separator * Remove NSFW * Fix missing genres
This commit is contained in:
parent
67fcfb842f
commit
cfd6629d98
9
src/id/ngamenkomik/build.gradle
Normal file
9
src/id/ngamenkomik/build.gradle
Normal file
@ -0,0 +1,9 @@
|
|||||||
|
ext {
|
||||||
|
extName = 'NgamenKomik'
|
||||||
|
extClass = '.NgamenKomik'
|
||||||
|
themePkg = 'zeistmanga'
|
||||||
|
baseUrl = 'https://ngamenkomik05.blogspot.com'
|
||||||
|
overrideVersionCode = 0
|
||||||
|
}
|
||||||
|
|
||||||
|
apply from: "$rootDir/common.gradle"
|
BIN
src/id/ngamenkomik/res/mipmap-hdpi/ic_launcher.png
Normal file
BIN
src/id/ngamenkomik/res/mipmap-hdpi/ic_launcher.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 3.1 KiB |
BIN
src/id/ngamenkomik/res/mipmap-mdpi/ic_launcher.png
Normal file
BIN
src/id/ngamenkomik/res/mipmap-mdpi/ic_launcher.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 1.7 KiB |
BIN
src/id/ngamenkomik/res/mipmap-xhdpi/ic_launcher.png
Normal file
BIN
src/id/ngamenkomik/res/mipmap-xhdpi/ic_launcher.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 4.6 KiB |
BIN
src/id/ngamenkomik/res/mipmap-xxhdpi/ic_launcher.png
Normal file
BIN
src/id/ngamenkomik/res/mipmap-xxhdpi/ic_launcher.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 8.9 KiB |
BIN
src/id/ngamenkomik/res/mipmap-xxxhdpi/ic_launcher.png
Normal file
BIN
src/id/ngamenkomik/res/mipmap-xxxhdpi/ic_launcher.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 14 KiB |
@ -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"),
|
||||||
|
)
|
||||||
|
}
|
Loading…
x
Reference in New Issue
Block a user