Jump to content

How do I make a drink item?


Recommended Posts

I have been working on my mod for some time now and I am wanting to add a drink item, I am new to modding and am currently self teaching myself java as I follow tutorials. I am hoping that the code would not need a massive reworking. 

public static final FoodProperties LEMON_JUICE = new FoodProperties.Builder().nutrition(3)
            .saturationMod(0.25f).effect(() -> new MobEffectInstance(MobEffects.DAMAGE_RESISTANCE, 1500),0.01f)
            .effect(() -> new MobEffectInstance(MobEffects.CONFUSION,200),1).build();

In game the lemon juice acts like a food, making eating audio and creating particles. For the audio I would like to use the honey drinking sound. 

How would I get this to work as I am wanting it to? 

Link to comment
Share on other sites

It looks like you'll need to implement a custom class for the item; that's how the sounds are handled. Look at the class HoneyBottleItem to see how it's done. Alternatively, you could just use the HoneyBottleItem class for your item, if you're trying to make a bottled drink of some kind. That might be simpler. Reply to this post if you're having trouble, and I'll see if I can help.

You'll use the HoneyBottleItem class (or your custom class) when you're registering the item, not when you're creating the properties. Thought I should probably make that clear.

Link to comment
Share on other sites

For the HoneyBottleItem class, would I just copy/paste my Lemon Juice item into the class or would I have to make other changes? Also, for what you first said, I have copied the "getEatingSound" and the "getDrinkingSound" from the class into my ModFoods class (I could link the whole class if that would help you understand more), though nothing seems to have been done. I also do not see a way to prevent particles from appearing when the item is drank. (Could you also post some examples if possible, that would be a great help to see where I went wrong).

 

I am at a point where I am quite clueless as the tutorials on YouTube do not cover the area I am needing to go into. I do hope that this is not too much of a bother for you. 

Link to comment
Share on other sites

Apologies for taking so long to respond, I forgot to check the forums for a while. You can probably just use the HoneyBottleItem class when registering your item, if you don't need custom behavior.

Here's an example of what you might have to do:

public static final RegistryObject<Item> LEMON_JUICE = ITEMS.register(
  			"lemon_juice",
			() -> new Item(
            	new HoneyBottleItem.Properties().stacksTo(1).food(
                	(new FoodProperties.Builder())
                    .nutrition(4)
                    .saturationMod(0.1F)
                    .effect(() -> new MobEffectInstance(MobEffects.GLOWING, 100, 0), 0.8F)
                    .build()
             	)
         	)
         );

This is a random food item I grabbed from the mod I'm working on, I just renamed it to lemon juice so you could see what it would look like. 

Don't worry about being clueless, YouTube will only take you so far. I'd recommend looking at published mods on GitHub to see how to do things, it makes life easier. Just remember to give attribution if you use any of their code, and check their licenses. 

 

If you do need to register your item, you can just make a class that inherits from HoneyBottleItem, and then modify what you need in there.

 

  • Thanks 1
Link to comment
Share on other sites

Thank you so, so much for your help! I have implemented the code from the example you gave me and it has been excepted, the only downside currently being that the game crashes on launch, saying: 

  • Caused by: java.lang.IllegalStateException: Cannot register new entries to DeferredRegister after RegisterEvent has been fired.  (Three times)

and 

  • Caused by: java.lang.ExceptionInInitializerError (Two times)

With further scanning I have found this error:

  • 2024-05-05T18:41:24.287+0100 [ERROR] [org.gradle.internal.buildevents.BuildExceptionReporter]

I am not exactly sure what to do with these errors but I am sure I can resolve them. Once again, thank you for your help! It is much appreciated. 😁

Link to comment
Share on other sites

It sounds like you're probably registering the item in the wrong place, try looking at this tutorial for how to register items: 

Forge Modding Tutorial - Minecraft 1.20: Custom Items & Creative Mode Tab | #2

This (free) tutorial series is excellent, by the way, and I'd highly recommend watching through some or all of the videos. There may also be an error in the code I showed above since I was in a hurry, but it should be enough for the general idea. I can't be more specific since I don't know exactly what you plan to do.

Link to comment
Share on other sites

I have been following these exact tutorials for quite a while, I must agree that they are amazing and easy to follow. I have registered the item in the ModFoods class, I tried to do it in ModItems (Where all the items should be registered) but got errors, I think I may need to revert this and figure it out from there. Once again, thank you for your help! 👍

Just looking back, I have noticed in your code you added ITEMS.register, which I am guessing means that they are being registered in ModFoods, I shall go through the process of trial and error to figure this out.

Link to comment
Share on other sites

I have done this now but have got the error: 

 'food(net.minecraft.world.food.FoodProperties)' in 'net.minecraft.world.item.Item.Properties' cannot be applied to                '(net.minecraftforge.registries.RegistryObject<net.minecraft.world.item.Item>)'

public static final RegistryObject<Item> LEMON_JUICE = ITEMS.register(
            "lemon_juice",
            () -> new Item(
                    new HoneyBottleItem.Properties().stacksTo(1).food(
                            (new FoodProperties.Builder())
                                    .nutrition(3)
                                    .saturationMod(0.25F)
                                    .effect(() -> new MobEffectInstance(MobEffects.DAMAGE_RESISTANCE, 1500), 0.01f )
                                    .build()
                    )
            ));

The code above is from the ModFoods class, the one below from the ModItems class.

public static final RegistryObject<Item> LEMON_JUICE = ITEMS.register("lemon_juice",
            () -> new Item(new Item.Properties().food(ModFoods.LEMON_JUICE)));

 

I shall keep going between them to try and figure out the cause. I am sorry if this is too much for you to help with, though I thank you greatly for your patience and all the effort you have put in to help me.

Link to comment
Share on other sites

Apologies for the late reply.

You'll need to register the item in ModItems; if you're following those tutorials, that's the only place you should ever register items. Otherwise, the mod will fail to register them properly and you'll get all sorts of interesting errors. Looking back at the code snipped I posted, I think that actually has some errors. I'm adding a lemon juice bottle to my mod just to ensure that it works correctly, and I will reply when I have solved the problems.

Link to comment
Share on other sites

Corrected item registration code: (for the ModItems class)

public static final RegistryObject<Item> LEMON_JUICE_BOTTLE = ITEMS.register("lemon_juice_bottle",
			() -> new HoneyBottleItem(new Item.Properties().stacksTo(1)
					.food((new FoodProperties.Builder()).nutrition(3).saturationMod(0.25F)
							.effect(() -> new MobEffectInstance(MobEffects.DAMAGE_RESISTANCE, 1500), 0.5f).build())));
Link to comment
Share on other sites

I have corrected the code as you have written it, though there have been errors present in the ModItems class when I have registered the item. (These have been present before but I forgot to mention them 🤦‍♂️). 

public static final RegistryObject<Item> LEMON_JUICE = ITEMS.register("lemon_juice",
            () -> new Item(new Item.Properties().food(ModItems.LEMON_JUICE)));

The first error occurs with the ModItems.LEMON_JUICE, the message is as follows:

'food(net.minecraft.world.food.FoodProperties)' in 'net.minecraft.world.item.Item.Properties' cannot be applied to '(net.minecraftforge.registries.RegistryObject<net.minecraft.world.item.Item>)'

 

public static final RegistryObject<Item> LEMON_JUICE = ITEMS.register("lemon_juice",
            () -> new Item(new Item.Properties().food(FoodProperties.LEMON_JUICE)));

The second error occurs with the FoodProperties.LEMON_JUICE, saying:

Cannot resolve symbol 'LEMON_JUICE'

This should be all that is left to do to finally fix all these errors that has been going on for two weeks now surprisingly. 

Link to comment
Share on other sites

It looks like you're trying to pass the lemon juice item itself to the .food method in your first code snippet; that won't work. The parameter to the .food method needs to be a FoodProperties object, as the error says.

The second way you're doing it there is much closer to how it should be. The problem there is that you're trying to access the LEMON_JUICE field of the vanilla FoodProperties class. This won't work because the vanilla food properties class does not have LEMON_JUICE information in it. You'll need to make your own ModFoods class, looking something like the vanilla Foods class. Here's an example:

public class ModFoods {

	public static final FoodProperties LEMON_JUICE = (new FoodProperties.Builder()).nutrition(3).saturationMod(0.25F)
			.effect(() -> new MobEffectInstance(MobEffects.DAMAGE_RESISTANCE, 1500), 0.5f).build();
}

Then, your completed item registration would be:

public static final RegistryObject<Item> LEMON_JUICE = ITEMS.register("lemon_juice",
            () -> new Item(new Item.Properties().food(ModFoods.LEMON_JUICE)));

Notice that I changed the FoodProperties to ModFoods, since that's the class where you'd be storing the food data.

Link to comment
Share on other sites

I have managed to implement your code after finally managing to sort out my error with exporting to .zip, though when the game launches, it will not allow me to proceed further and gives this error:

 

Caused by: java.lang.IllegalArgumentException: Duplicate registration orange

 

I have checked over my code and no errors or warnings are present that would affect my orange item. I am not sure what to do here.

(It is only registered in the ModItems, as it should be).

Link to comment
Share on other sites

I have now easily fixed the duplication error present, I was just not looking.

 

I have been working for the past half hour to try and fix another error present, this time with the Creative Mode Tab.

 

I have changed some things around to get where I am currently. (ModFoods to ModDrinks*) and it cannot find the symbol ".get" at the end of the code.

*The custom class you recommended

pOutput.accept(ModDrinks.ORANGE_JUICE.get());

I think the point I am at currently is the closest I have to how it should be but because I am not as experienced with java I would not know. 

I have also removed ORANGE_JUICE and LEMON_JUICE from the ModFoods class, to avoid confliction.

I do hope all this can be fully resolved soon.

 

Link to comment
Share on other sites

I have made the changes to the creative mode tab and have managed to run the game successfully and to join my test world. Though, disappointingly, the Lemon Juice and Orange Juice items have not changed at all, their properties are exactly the same as how they were when I originally asked for help: (making the food eating sound and producing particles).

 

I have absolutely no idea what to do and I am wondering why it has not worked at all, would you know how to fix this?

Link to comment
Share on other sites

All I know is what I've told you; I can't help more without inspecting the entirety of your code, and I think you'd probably learn the most from working this problem out yourself at this point. If you're still confused, try finding some other tutorials for modding; if you don't understand what the code is doing, try looking for Java tutorials. I hope this helps.

  • Thanks 1
Link to comment
Share on other sites

Okay, I shall look into this problem more in depth and look at Kaupenjoe's Java tutorials on YouTube. Thank you so much for all of your support over these last two weeks, you have helped me so much and I think that now I have a better understanding of Java thanks to you. 😊

  • Like 1
Link to comment
Share on other sites

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.

Guest
Unfortunately, your content contains terms that we do not allow. Please edit your content to remove the highlighted words below.
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Announcements



×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.