Entity Textures
At the moment mojang has not added anything about this, but currently we can add new variants of mobs since 1.21.5, limited but possible through datapacks
π¦datapack.zip
βββ πdata
β βββ πearth_variations
β βββ πchicken_variant
β β βββ πgold_crested.json
β β βββ πskewbald.json
β βββ πpig_variant
β β βββ πpale.json
β βββ πcow_variant
β β βββ π<variant>.json
β βββ πfrog_variant
β βββ πwolf_variant
β βββ πcat_variant
β βββ πtags
β βββ πworldgen
β βββ πbiome
β βββ πspawns_pale_variant_pigs.json
βββ πpack.mcmeta
βββ π¨pack.png
π¦resource_pack.zip
βββ πassets
β βββ πminecraft
β βββ πtextures
β βββ πentity
β βββ πchicken
β β βββ π¨gold_crested.png
β β βββ π¨skewbald.png
β βββ πpig
β βββ π¨pale.png
βββ πpack.mcmeta
βββ π¨pack.png
gold_crested.json
{
"asset_id": "minecraft:entity/chicken/gold_crested",
"model": "normal",
"spawn_conditions": [
{
"condition": {
"type": "minecraft:biome",
"biomes": "minecraft:plains"
},
"priority": 5
}
]
}
pale.json
{
"asset_id": "minecraft:entity/pig/pale",
"model": "normal",
"spawn_conditions": [
{
"condition": {
"type": "minecraft:biome",
"biomes": "#earth_variations:spawns_pale_variant_pigs"
},
"priority": 10
}
]
}
spawns_pale_variant_pigs.json
{
"values": [
"minecraft:snowy_taiga",
"minecraft:pale_garden"
]
}
Last updated