Add PussyToons (#4394)

This commit is contained in:
Vetle Ledaal 2024-08-04 12:47:42 +02:00 committed by GitHub
parent c0d715a1f9
commit c94dbca167
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
7 changed files with 25 additions and 0 deletions

View File

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

Binary file not shown.

After

Width:  |  Height:  |  Size: 7.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 12 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 25 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 42 KiB

View File

@ -0,0 +1,15 @@
package eu.kanade.tachiyomi.extension.pt.pussytoons
import eu.kanade.tachiyomi.multisrc.madara.Madara
import java.text.SimpleDateFormat
import java.util.Locale
class PussyToons : Madara(
"PussyToons",
"https://pussy.sussytoons.com",
"pt-BR",
dateFormat = SimpleDateFormat("MMMM dd, yyyy", Locale("pt", "BR")),
) {
override val useLoadMoreRequest = LoadMoreStrategy.Never
override val useNewChapterEndpoint = true
}