Add AsiaLotus (#5544)

This commit is contained in:
Chopper 2024-10-16 02:54:03 -03:00 committed by GitHub
parent 5d85cf9684
commit 75c5d1b15e
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
7 changed files with 24 additions and 0 deletions

View File

@ -0,0 +1,10 @@
ext {
extName = 'Asia Lotus'
extClass = '.AsiaLotus'
themePkg = 'mangathemesia'
baseUrl = 'https://asialotuss.com'
overrideVersionCode = 0
isNsfw = true
}
apply from: "$rootDir/common.gradle"

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 7.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 15 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 22 KiB

View File

@ -0,0 +1,14 @@
package eu.kanade.tachiyomi.extension.es.asialotus
import eu.kanade.tachiyomi.multisrc.mangathemesia.MangaThemesia
import eu.kanade.tachiyomi.network.interceptor.rateLimit
class AsiaLotus : MangaThemesia(
"Asia Lotus",
"https://asialotuss.com",
"es",
) {
override val client = super.client.newBuilder()
.rateLimit(3)
.build()
}