I want to make an farmers delight addon for this mod

Started by ДаніїлЗабродьский on

Topic category: Help with Minecraft modding (Java Edition)

I want to make an farmers delight addon for this mod

So i want to make an addon with farmers delight (and maybe create) support for this mod: https://www.curseforge.com/minecraft/mc-mods/unusual-prehistory. I genneraly can make crafting recepies using id. But is there any way to set drops from enemies killed with knife/other weapon or cooking pot recepies? 

Joined Feb 2024
Points:

User statistics:

  • Modifications:
  • Forum topics:
  • Wiki pages:
  • MCreator plugins:
  • Comments:
yes, go to the farmes…
Tue, 10/07/2025 - 12:01

yes, go to the farmes delight wiki or smth like that they will have examples for recipees, and also for the drops idk the easiest thing you could probably do is just make a procedure that spawns a dropped item and that triggerst when an entity dies, then just lock it and edit the mob name to the id from the mob you actually want
heres an example of an recipe, you need to put this in a locked recipe element: {
 "type": "farmersdelight:cooking",
 "cookingtime": 200,
 "experience": 1.0,
 "ingredients": [
   {
     "item": "minecraft:apple"
   },
   {
     "item": "minecraft:apple"
   },
   {
     "item": "minecraft:sugar"
   }
 ],
 "recipe_book_tab": "drinks",
 "result": {
   "item": "farmersdelight:apple_cider"
 }
}



and of course just edit the ids to get the items you want from what you want and the xp and time maybe