This commit is contained in:
ThePromidius
2024-01-14 18:40:20 +01:00
parent 14792d2a11
commit 6f088ac76f
5620 changed files with 29879 additions and 2214 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 7.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 9.9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 41 KiB

View File

@@ -0,0 +1,17 @@
package eu.kanade.tachiyomi.extension.en.readbokunoheroacademiamyheroacademiamanga
import eu.kanade.tachiyomi.multisrc.mangacatalog.MangaCatalog
class ReadBokuNoHeroAcademiaMyHeroAcademiaManga : MangaCatalog("Read Boku no Hero Academia My Hero Academia Manga", "https://ww6.readmha.com", "en") {
override val sourceList = listOf(
Pair("Boku no Hero Academia", "$baseUrl/manga/boku-no-hero-academia/"),
Pair("Vigilante", "$baseUrl/manga/vigilante-boku-no-hero-academia-illegals/"),
Pair("Team Up", "$baseUrl/manga/my-hero-academia-team-up-mission/"),
Pair("MHA Smash", "$baseUrl/manga/boku-no-hero-academia-smash/"),
Pair("MHA: School Brief", "$baseUrl/manga/my-hero-academia-school-briefs/"),
Pair("Rising", "$baseUrl/manga/deku-bakugo-rising/"),
Pair("Colored", "$baseUrl/manga/boku-no-hero-academia-colored/"),
Pair("Oumagadoki Zoo", "$baseUrl/manga/oumagadoki-zoo/"),
Pair("Sensei no Bulge", "$baseUrl/manga/sensei-no-bulge/"),
).sortedBy { it.first }.distinctBy { it.second }
}