skylinerw / guides

Creative Commons Attribution 4.0 International
166 stars 29 forks source link

Implementing custom blocks into vanilla recipes #13

Closed AsgrimS closed 6 years ago

AsgrimS commented 6 years ago

So, I've made a custom wood block in my mod and now I can't find any way to make it work with all vanilla recipes. Do I have to create a lot of JSON files for each of standard items like crafting table, chest, boat, sticks etc.. or is there any better method for that?

Hugman76 commented 6 years ago

As of 1.12, you cannot really do this. With 1.13, you could add your custom block to the minecraft:plankstag.

AsgrimS commented 6 years ago

Oh, I see. Is modding in 1.13 going to be changed a lot or it'll add just a bunch of useful commands?

Hugman76 commented 6 years ago

In the modding way, I don't really know. But for sure, most of every objects will be renamed.

mainrs commented 6 years ago

It doesn't sound like you are using forge for modding anyways, so no, modding won't change a lot. The new additions are some functions and the new tags. Those tags are basically the same as forge's oredictionary entries, registering your wood under the entry "planksWood" should make it available and you should be able to craft chests, sticks etc with it.

AsgrimS commented 6 years ago

Thanks