add XXX Yaoi (#2355)

* add XXX Yaoi

* Update XXXYaoi.kt
This commit is contained in:
kana-shii 2024-04-13 02:48:25 -03:00 committed by Draff
parent 15b3fc9866
commit 2a81be31c1
7 changed files with 34 additions and 0 deletions

View File

@ -0,0 +1,10 @@
ext {
extName = 'XXX Yaoi'
extClass = '.XXXYaoi'
themePkg = 'madara'
baseUrl = 'https://3xyaoi.com'
overrideVersionCode = 0
isNsfw = true
}
apply from: "$rootDir/common.gradle"

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 10 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 17 KiB

View File

@ -0,0 +1,24 @@
package eu.kanade.tachiyomi.extension.pt.xxxyaoi
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
import java.util.concurrent.TimeUnit
class XXXYaoi : Madara(
"XXX Yaoi",
"https://3xyaoi.com",
"pt-BR",
SimpleDateFormat("MMMM dd, yyyy", Locale("pt", "BR")),
) {
override val client: OkHttpClient = super.client.newBuilder()
.rateLimit(1, 2, TimeUnit.SECONDS)
.build()
override val useNewChapterEndpoint = true
override val mangaSubString = "bl"
}