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