Johannes Joens 1befe9c9b4
Added NyanHentai multisrc (#6712)
* Create NyaHentai.kt

* Create NyaHentaiGenerator.kt

* Added Overrides

* Removed Old files

* Added more Nya Sources

* Added Lang Factorys
2021-04-26 08:41:19 -04:00

19 lines
780 B
Kotlin

package eu.kanade.tachiyomi.extension.all.nyahentaitwocom
import eu.kanade.tachiyomi.multisrc.nyahentai.NyaHentai
import eu.kanade.tachiyomi.source.Source
import eu.kanade.tachiyomi.source.SourceFactory
class NyaHentaiTwoComFactory : SourceFactory {
override fun createSources(): List<Source> = listOf(
NyaHentaiTwoComEN(),
NyaHentaiTwoComJA(),
NyaHentaiTwoComZH(),
NyaHentaiTwoComALL(),
)
}
class NyaHentaiTwoComEN : NyaHentai("NyaHentai2.com", "https://nyahentai2.com", "en")
class NyaHentaiTwoComJA : NyaHentai("NyaHentai2.com", "https://nyahentai2.com", "ja")
class NyaHentaiTwoComZH : NyaHentai("NyaHentai2.com", "https://nyahentai2.com", "zh")
class NyaHentaiTwoComALL : NyaHentai("NyaHentai2.com", "https://nyahentai2.com", "all")