Posted May 17, 20187 yr Hi there, I've got a few questions regarding recipes in Forge 1.12.2: What 'types' does forge come with besides the normal minecraft:shaped_recipe and minecraft:smelting stuff. How can one register his own type. How can I create a recipe which returns multiply different items, for example an emtpy bucket and an apple (in this case a full bucket was provided) or an apple and a dirt block. Thx in advance. Bektor EDIT: see here Edited June 8, 20187 yr by Bektor Developer of Primeval Forest.
May 17, 20187 yr 27 minutes ago, Bektor said: What 'types' does forge come with besides the normal minecraft:shaped_recipe and minecraft:smelting stuff. there's also a couple of Forge ones, for oredict. 27 minutes ago, Bektor said: How can one register his own type. You need a _factories.json file: https://github.com/Draco18s/ReasonableRealism/blob/1.12.1/src/main/resources/assets/hardlib/recipes/_factories.json 27 minutes ago, Bektor said: How can I create a recipe which returns multiply different items, for example an emtpy bucket and an apple (in this case a full bucket was provided) or an apple and a dirt block. Buckets of liquids automatically return an empty bucket due to the Container Item mechanics. This has nothing to do with the recipe. Apparently I'm a complete and utter jerk and come to this forum just like to make fun of people, be confrontational, and make your personal life miserable. If you think this is the case, JUST REPORT ME. Otherwise you're just going to get reported when you reply to my posts and point it out, because odds are, I was trying to be nice. Exception: If you do not understand Java, I WILL NOT HELP YOU and your thread will get locked. DO NOT PM ME WITH PROBLEMS. No help will be given.
May 17, 20187 yr Author 12 minutes ago, Draco18s said: You need a _factories.json file: https://github.com/Draco18s/ReasonableRealism/blob/1.12.1/src/main/resources/assets/hardlib/recipes/_factories.json Quote So what exaclty is a factory in Forge and how does it work? Developer of Primeval Forest.
May 17, 20187 yr A "factory" in the programming sense is a class and code that constructs an object of another class. https://en.wikipedia.org/wiki/Factory_(object-oriented_programming) The _factories.json file points the string key name from the type to a class reference. Specifically the factory that has a known constructor and input method that the JSON segment needing to be deserialized can be passed to in order to construct the unknown object type: https://github.com/Draco18s/ReasonableRealism/blob/1.12.1/src/main/java/com/draco18s/hardlib/api/recipes/RecipeToolMold.java#L245 Apparently I'm a complete and utter jerk and come to this forum just like to make fun of people, be confrontational, and make your personal life miserable. If you think this is the case, JUST REPORT ME. Otherwise you're just going to get reported when you reply to my posts and point it out, because odds are, I was trying to be nice. Exception: If you do not understand Java, I WILL NOT HELP YOU and your thread will get locked. DO NOT PM ME WITH PROBLEMS. No help will be given.
May 17, 20187 yr Choonster also has a nice set of simple test classes that demonstrate various solutions to common questions about custom recipes: https://github.com/Choonster-Minecraft-Mods/TestMod3/tree/1.12.2/src/main/java/choonster/testmod3/crafting. See the assets folder for json files like _factories.json ...
May 30, 20187 yr Author On 5/17/2018 at 6:35 PM, Draco18s said: Buckets of liquids automatically return an empty bucket due to the Container Item mechanics. This has nothing to do with the recipe. But what about custom items? I'm also wondering if it is possible to define multiply recipes for the same item and how this should be done? Developer of Primeval Forest.
May 30, 20187 yr 8 minutes ago, Bektor said: But what about custom items? Override hasContainerItem and getContainerItem :| Quote I'm also wondering if it is possible to define multiply recipes for the same item and how this should be done? Probably not. I mean how would that work, a bucket of milk returns a glass bottle, but a bucket of water returns a bucket? Apparently I'm a complete and utter jerk and come to this forum just like to make fun of people, be confrontational, and make your personal life miserable. If you think this is the case, JUST REPORT ME. Otherwise you're just going to get reported when you reply to my posts and point it out, because odds are, I was trying to be nice. Exception: If you do not understand Java, I WILL NOT HELP YOU and your thread will get locked. DO NOT PM ME WITH PROBLEMS. No help will be given.
May 30, 20187 yr Author 2 minutes ago, Draco18s said: Probably not. I mean how would that work, a bucket of milk returns a glass bottle, but a bucket of water returns a bucket? Well: Crafting a bed might need wool, but you might also use stone. Different recipe, same result. Developer of Primeval Forest.
May 30, 20187 yr That's...not even related to container items... Apparently I'm a complete and utter jerk and come to this forum just like to make fun of people, be confrontational, and make your personal life miserable. If you think this is the case, JUST REPORT ME. Otherwise you're just going to get reported when you reply to my posts and point it out, because odds are, I was trying to be nice. Exception: If you do not understand Java, I WILL NOT HELP YOU and your thread will get locked. DO NOT PM ME WITH PROBLEMS. No help will be given.
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.