Add CatharsisWorld (#5308)

This commit is contained in:
Chopper 2024-09-30 10:06:25 -03:00 committed by Draff
parent 9fe318655e
commit d74fec37c2
No known key found for this signature in database
GPG Key ID: E8A89F3211677653
7 changed files with 24 additions and 0 deletions

View File

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

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 11 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 22 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 36 KiB

View File

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