Add Ragnarok No Chikara (#5402)

add
This commit is contained in:
bapeey 2024-10-07 06:21:16 -05:00 committed by GitHub
parent d0f2fb9fe2
commit 46837ed75f
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
7 changed files with 31 additions and 0 deletions

View File

@ -0,0 +1,10 @@
ext {
extName = 'Ragnarok No Chikara'
extClass = '.RagnarokNoChikara'
themePkg = 'madara'
baseUrl = 'https://ragnarokscan.com'
overrideVersionCode = 0
isNsfw = false
}
apply from: "$rootDir/common.gradle"

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 12 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 16 KiB

View File

@ -0,0 +1,21 @@
package eu.kanade.tachiyomi.extension.es.ragnaroknochikara
import eu.kanade.tachiyomi.multisrc.madara.Madara
import eu.kanade.tachiyomi.network.interceptor.rateLimitHost
import okhttp3.HttpUrl.Companion.toHttpUrl
import java.text.SimpleDateFormat
import java.util.Locale
class RagnarokNoChikara : Madara(
"Ragnarok No Chikara",
"https://ragnarokscan.com",
"es",
SimpleDateFormat("MMMM d, yyy", Locale("es")),
) {
override val client = super.client.newBuilder()
.rateLimitHost(baseUrl.toHttpUrl(), 3, 1)
.build()
override val useLoadMoreRequest = LoadMoreStrategy.Never
override val useNewChapterEndpoint = true
}