Add 5 new source
parent
c3bed26739
commit
b9eb6363b7
@ -0,0 +1,17 @@
|
|||||||
|
package org.koitharu.kotatsu.parsers.site.madara.pt
|
||||||
|
|
||||||
|
import org.koitharu.kotatsu.parsers.MangaLoaderContext
|
||||||
|
import org.koitharu.kotatsu.parsers.MangaSourceParser
|
||||||
|
import org.koitharu.kotatsu.parsers.model.MangaSource
|
||||||
|
import org.koitharu.kotatsu.parsers.site.madara.MadaraParser
|
||||||
|
import java.util.Locale
|
||||||
|
|
||||||
|
|
||||||
|
@MangaSourceParser("GEKKOU", "Gekkou", "pt")
|
||||||
|
internal class Gekkou(context: MangaLoaderContext) :
|
||||||
|
MadaraParser(context, MangaSource.GEKKOU, "gekkou.com.br", 10) {
|
||||||
|
|
||||||
|
override val tagPrefix = "genero/"
|
||||||
|
override val datePattern: String = "dd 'de' MMMMM 'de' yyyy"
|
||||||
|
override val sourceLocale: Locale = Locale("pt", "PT")
|
||||||
|
}
|
||||||
@ -0,0 +1,15 @@
|
|||||||
|
package org.koitharu.kotatsu.parsers.site.madara.pt
|
||||||
|
|
||||||
|
import org.koitharu.kotatsu.parsers.MangaLoaderContext
|
||||||
|
import org.koitharu.kotatsu.parsers.MangaSourceParser
|
||||||
|
import org.koitharu.kotatsu.parsers.model.MangaSource
|
||||||
|
import org.koitharu.kotatsu.parsers.site.madara.MadaraParser
|
||||||
|
|
||||||
|
|
||||||
|
@MangaSourceParser("GOOFFANSUB", "Goof Fansub", "pt")
|
||||||
|
internal class GoofFansub(context: MangaLoaderContext) :
|
||||||
|
MadaraParser(context, MangaSource.GOOFFANSUB, "gooffansub.com") {
|
||||||
|
|
||||||
|
override val datePattern: String = "dd/MM/yyyy"
|
||||||
|
override val isNsfwSource = true
|
||||||
|
}
|
||||||
@ -0,0 +1,18 @@
|
|||||||
|
package org.koitharu.kotatsu.parsers.site.madara.pt
|
||||||
|
|
||||||
|
import org.koitharu.kotatsu.parsers.MangaLoaderContext
|
||||||
|
import org.koitharu.kotatsu.parsers.MangaSourceParser
|
||||||
|
import org.koitharu.kotatsu.parsers.model.MangaSource
|
||||||
|
import org.koitharu.kotatsu.parsers.site.madara.MadaraParser
|
||||||
|
import java.util.Locale
|
||||||
|
|
||||||
|
|
||||||
|
@MangaSourceParser("HENTAIGEKKOU", "Hentai Gekkou", "pt")
|
||||||
|
internal class HentaiGekkou(context: MangaLoaderContext) :
|
||||||
|
MadaraParser(context, MangaSource.HENTAIGEKKOU, "hentai.gekkouscans.com.br", 10) {
|
||||||
|
|
||||||
|
override val tagPrefix = "genero/"
|
||||||
|
override val datePattern: String = "dd 'de' MMMMM 'de' yyyy"
|
||||||
|
override val sourceLocale: Locale = Locale("pt", "PT")
|
||||||
|
override val isNsfwSource = true
|
||||||
|
}
|
||||||
@ -0,0 +1,15 @@
|
|||||||
|
package org.koitharu.kotatsu.parsers.site.madara.tr
|
||||||
|
|
||||||
|
import org.koitharu.kotatsu.parsers.MangaLoaderContext
|
||||||
|
import org.koitharu.kotatsu.parsers.MangaSourceParser
|
||||||
|
import org.koitharu.kotatsu.parsers.model.MangaSource
|
||||||
|
import org.koitharu.kotatsu.parsers.site.madara.MadaraParser
|
||||||
|
import java.util.Locale
|
||||||
|
|
||||||
|
@MangaSourceParser("GLORYMANGA", "Glory Manga", "tr")
|
||||||
|
internal class GloryManga(context: MangaLoaderContext) :
|
||||||
|
MadaraParser(context, MangaSource.GLORYMANGA, "glorymanga.com", 18) {
|
||||||
|
|
||||||
|
override val datePattern = "dd/MM/yyyy"
|
||||||
|
override val sourceLocale: Locale = Locale("tr")
|
||||||
|
}
|
||||||
@ -0,0 +1,15 @@
|
|||||||
|
package org.koitharu.kotatsu.parsers.site.madara.tr
|
||||||
|
|
||||||
|
import org.koitharu.kotatsu.parsers.MangaLoaderContext
|
||||||
|
import org.koitharu.kotatsu.parsers.MangaSourceParser
|
||||||
|
import org.koitharu.kotatsu.parsers.model.MangaSource
|
||||||
|
import org.koitharu.kotatsu.parsers.site.madara.MadaraParser
|
||||||
|
import java.util.Locale
|
||||||
|
|
||||||
|
@MangaSourceParser("GUNCEL_MANGA", "Guncel Manga", "tr")
|
||||||
|
internal class GuncelManga(context: MangaLoaderContext) :
|
||||||
|
MadaraParser(context, MangaSource.GUNCEL_MANGA, "guncelmanga.net") {
|
||||||
|
|
||||||
|
override val datePattern = "d MMMM yyyy"
|
||||||
|
override val sourceLocale: Locale = Locale("tr")
|
||||||
|
}
|
||||||
Loading…
Reference in New Issue