Tags
Creators
Details
1.20.x+2.0.0
Compatibility
Required content
Changes
Backported Wolves 2.0.0
An update has been needed for a while now. But here it is!
BW now uses Architectury. -This basically means that development is much easier to maintain.
Features
Minecraft variant parity:
Wolves (with variants), that were tamed while using the mod will keep their variants even if the mod is removed. -As long as Minecraft is also updated to a version which natively has them. I.e. 1.20.5 and above.
What happens to my wolves that are using the "old" tags?! The old tags / variants will automatically be converted to the new format. Like magic!
Wolf Sound Variants:
All sound variants are now included in the mod, which are:
- Angry
- Big
- Classic
- Cute
- Grumpy
- Puglin
- Sad
Biome Tag Dependent Spawns
Adding biome entries to any wolf variant's spawn tag will make the wolf variant spawn in those biomes too:
Just add a biome name to a tag named like this:
- spawns_ashen_wolf
- spawns_black_wolf
- spawns_chestnut_wolf and so on for the other variants...
Then **add **the biomes you want:
{
"values": [
"minecraft:snowy_taiga",
"minecraft:cherry grove",
"minecraft:swamp"
]
}
You can even **replace **the spawns completely, using the replace flag in the JSON file:
{
"replace": true,
"values": [
"minecraft:snowy_taiga"
]
}
Full path example: "resources/data/backported_wolves/tags/worldgen/biome/spawns_ashen_wolf.json"
Mix and Match You are even able to make multiple variants spawn in the same biome, with the chance being split equally between the variants. (Might be especially fun for mod developers / modpack makers)
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:yasXoQpR:xf7L2rxa"
}
// Legacy Loom dependency
dependencies {
modImplementation "maven.modrinth:yasXoQpR:xf7L2rxa"
}

