Files
nugget/common/src/main/java/dev/sillyangel/nuggetmod/item/ModFoodComponents.java
angel 06d9266208
Some checks failed
Build and Artifact / build (pull_request) Failing after 2m19s
part 1, finished common. moving onto neoforge and fabric
2026-01-23 06:10:34 -06:00

12 lines
288 B
Java

package dev.sillyangel.nuggetmod.item;
import net.minecraft.world.food.FoodProperties;
public class ModFoodComponents {
public static final FoodProperties NUGGET = new FoodProperties.Builder()
.nutrition(5)
.saturationModifier(0.5f)
.build();
}