Add Asmodeus Scans && Add La Zona del Lirio (#7123)
* Add Asmodeus Scans && Add La Zona del Lirio * fix: add extra line
|
@ -0,0 +1,10 @@
|
|||
ext {
|
||||
extName = 'Asmodeus Scans'
|
||||
extClass = '.Asmotoon'
|
||||
themePkg = 'keyoapp'
|
||||
baseUrl = 'https://asmotoon.com'
|
||||
overrideVersionCode = 0
|
||||
isNsfw = false
|
||||
}
|
||||
|
||||
apply from: "$rootDir/common.gradle"
|
After Width: | Height: | Size: 6.4 KiB |
After Width: | Height: | Size: 3.5 KiB |
After Width: | Height: | Size: 9.0 KiB |
After Width: | Height: | Size: 17 KiB |
After Width: | Height: | Size: 26 KiB |
|
@ -0,0 +1,9 @@
|
|||
package eu.kanade.tachiyomi.extension.en.asmotoon
|
||||
|
||||
import eu.kanade.tachiyomi.multisrc.keyoapp.Keyoapp
|
||||
|
||||
class Asmotoon : Keyoapp(
|
||||
"Asmodeus Scans",
|
||||
"https://asmotoon.com",
|
||||
"en",
|
||||
)
|
|
@ -0,0 +1,10 @@
|
|||
ext {
|
||||
extName = 'La Zona del Lirio'
|
||||
extClass = '.LaZonadelLirio'
|
||||
themePkg = 'mangathemesia'
|
||||
baseUrl = 'https://lazonadellirio.com'
|
||||
overrideVersionCode = 0
|
||||
isNsfw = false
|
||||
}
|
||||
|
||||
apply from: "$rootDir/common.gradle"
|
After Width: | Height: | Size: 6.6 KiB |
After Width: | Height: | Size: 3.5 KiB |
After Width: | Height: | Size: 10 KiB |
After Width: | Height: | Size: 20 KiB |
After Width: | Height: | Size: 32 KiB |
|
@ -0,0 +1,12 @@
|
|||
package eu.kanade.tachiyomi.extension.es.lazonadellirio
|
||||
|
||||
import eu.kanade.tachiyomi.multisrc.mangathemesia.MangaThemesia
|
||||
import java.text.SimpleDateFormat
|
||||
import java.util.Locale
|
||||
|
||||
class LaZonadelLirio : MangaThemesia(
|
||||
"La Zona del Lirio",
|
||||
"https://lazonadellirio.com",
|
||||
"es",
|
||||
dateFormat = SimpleDateFormat("MMMM dd, yyyy", Locale("es")),
|
||||
)
|