Add LuckyManga (#1988)

This commit is contained in:
bapeey 2024-03-21 11:18:19 -05:00 committed by Draff
parent a0fa7fa458
commit b4f5680364
7 changed files with 31 additions and 0 deletions

View File

@ -0,0 +1,10 @@
ext {
extName = 'Lucky Manga'
extClass = '.LuckyManga'
themePkg = 'madara'
baseUrl = 'https://luckymanga.com'
overrideVersionCode = 0
isNsfw = true
}
apply from: "$rootDir/common.gradle"

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 8.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 15 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 23 KiB

View File

@ -0,0 +1,21 @@
package eu.kanade.tachiyomi.extension.es.luckymanga
import eu.kanade.tachiyomi.multisrc.madara.Madara
import eu.kanade.tachiyomi.network.interceptor.rateLimit
import okhttp3.OkHttpClient
import java.text.SimpleDateFormat
import java.util.Locale
class LuckyManga : Madara(
"Lucky Manga",
"https://luckymanga.com",
"es",
SimpleDateFormat("d MMMM, yyyy", Locale("es")),
) {
override val useLoadMoreRequest = LoadMoreStrategy.Never
override val useNewChapterEndpoint = true
override val client: OkHttpClient = super.client.newBuilder()
.rateLimit(2)
.build()
}