Initial commit
This commit is contained in:
Binary file not shown.
|
After Width: | Height: | Size: 4.3 KiB |
Binary file not shown.
|
After Width: | Height: | Size: 2.2 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: 15 KiB |
Binary file not shown.
|
After Width: | Height: | Size: 82 KiB |
@@ -0,0 +1,15 @@
|
||||
package eu.kanade.tachiyomi.extension.all.ravensscans
|
||||
|
||||
import eu.kanade.tachiyomi.multisrc.readerfront.ReaderFront
|
||||
import eu.kanade.tachiyomi.source.SourceFactory
|
||||
|
||||
class RavensScansFactory : SourceFactory {
|
||||
override fun createSources() = listOf(RavensScans("es"), RavensScans("en"))
|
||||
|
||||
class RavensScans(lang: String) :
|
||||
ReaderFront("Ravens Scans", "https://ravens-scans.com", lang) {
|
||||
override fun getImageCDN(path: String, width: Int) =
|
||||
"https://i${(0..2).random()}.wp.com/img-cdn1.ravens-scans.com" +
|
||||
"$path?strip=all&quality=100&w=$width"
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user