[Feature Request]: Crate config to allow modded type of mobs i.e custom mobs e.g (custommobs:skeleton_sniper)
killerkitt opened this issue ยท 7 comments
Is your feature request related to a problem?
i was wondering if you could add a config option to allow mobs i.e custom mobs e.g (custommobs:skeleton_sniper)
or minecraft:villager minecraft:iron_golem
Solution(s)
if possible thank you
Describe alternatives you've considered
No response
Mod Version
1.0.2
Mod Loader Version
1.18.2 0.14.6
Mod Loader
Fabric
Additional context
No response
There is already a way to add custom mobs you just need to add to a datapack tag goodall:crate_animals
, this is how we add our own animals so you can also remove certain mobs too if you want.
You need to create a datapack with a entity type tag file here's the default one for you to look at and then put minecraft:villager
in the list in your datapack.
https://github.com/ThatGravyBoat/Goodall/blob/master/common/src/main/resources/data/goodall/tags/entity_types/crate_animals.json
For more information about datapacks here is the mc wiki: https://minecraft.fandom.com/wiki/Data_pack
still having trouble getting this all set up
Root in datapacks folde called Good All
in folder data folder and pack.mcmeta
in data folder, good_all folder in that one is tags
in that one is entity_types folder in that is the good_all.json
in that is the default one you listed above and i added minecraft:villager to it and i reloaded and can pickup villager still
please respond i dont know how come the datapack is not letting the villager get added in
{
"replace": false,
"values": [
"minecraft:axolotl",
"minecraft:bat",
"minecraft:bee",
"minecraft:cat",
"minecraft:chicken",
"minecraft:cod",
"minecraft:cow",
"minecraft:creeper",
"minecraft:dolphin",
"minecraft:donkey",
"minecraft:fox",
"minecraft:glow_squid",
"minecraft:goat",
"minecraft:hoglin",
"minecraft:horse",
"minecraft:llama",
"minecraft:mule",
"minecraft:mooshroom",
"minecraft:ocelot",
"minecraft:panda",
"minecraft:parrot",
"minecraft:pig",
"minecraft:polar_bear",
"minecraft:pufferfish",
"minecraft:rabbit",
"minecraft:salmon",
"minecraft:sheep",
"minecraft:skeleton_horse",
"minecraft:squid",
"minecraft:strider",
"minecraft:trader_llama",
"minecraft:tropical_fish",
"minecraft:turtle",
"minecraft:wolf",
"minecraft:villager",
"minecraft:zombie_horse",
]
}