CreeperHost / Chickens

A Minecraft Mod
MIT License
5 stars 12 forks source link

How to add new chickens to the mod? #58

Closed BV-Doan closed 1 year ago

BV-Doan commented 1 year ago

I want to add some ingredients from another mod but I can't find a way to do it online.

xaelith commented 1 year ago

I want to add some ingredients from another mod but I can't find a way to do it online.

The "chickens.json" in the "config->chickens" folder of your instance has an example commented out in the top of the file. I also used to copy and paste the code for one of the already-implemented chickens when I was starting out, and changed only the values I was interested in (especially because format matters). Stoneblock 3 and FTB One are also good examples. It's helpful to have advanced tooltips turned on in-game (F3+H) to give the tag associated with the preferred ingredient, as the tag will be necessary in the config to have the custom chicken lay/drop the proper item. Lastly, knowing how to create a datapack or using/having kubejs in the modpack helps a ton.

I apologize if this isn't as helpful as you were hoping, but here isn't the proper location for a complete walkthrough :)

BV-Doan commented 1 year ago

It worked. Thank.