Tags
Creators
Details
1.0.0
Compatibility
Changes
Egg Moves Fix
The issue was that many Pokémon were missing historical egg moves. Moves like Dragon Dance, Outrage, Crunch, etc. were only listed as TM moves, so they couldn't be passed down through breeding.
What was done:
- Added 533 missing egg moves across 109 Pokémon
- All moves that were ever an egg move in any generation (Gen 3-9) are now available through breeding
- Egg moves are properly propagated from base forms to evolutions (e.g. Charmander → Charmeleon → Charizard)
Example - Charizard:
- Before: 10 egg moves
- After: 20 egg moves (added Dragon Dance, Outrage, Crunch, Flare Blitz, Swords Dance, Focus Punch, Dragon Pulse, Rock Slide, Air Cutter, Beat Up)
About Earth Power on Charizard: Earth Power was never an egg move for Charizard in any generation, and it's not in its official learnset. It might be confused with Earthquake (which is available as a TM move).
Projects on Modrinth are automatically available through a Maven repository for use with JVM build tools such as Gradle. To learn more about the Modrinth Maven API, click here.
Note: When available, you should use the creator's maven repo instead as it will have transitive dependency information that the Modrinth Maven API does not. You may also end up with duplicate dependencies if you use a mix of Modrinth and non-Modrinth Maven repositories for your dependencies, because the group identifier will be different when served through the Modrinth Maven API.
Maven coordinates:
Version ID:
build.gradle:
repositories {
exclusiveContent {
forRepository {
maven {
name = "Modrinth"
url = "https://api.modrinth.com/maven"
}
}
// forRepositories(fg.repository) // Uncomment when using ForgeGradle
filter {
includeGroup "maven.modrinth"
}
}
}
// Standard Gradle dependency
dependencies {
implementation "maven.modrinth:7fUgeH91:Vg5pubYg"
}
// Legacy Loom dependency
dependencies {
modImplementation "maven.modrinth:7fUgeH91:Vg5pubYg"
}

