package de.therealjan.vanillaplusplus.lists;
import net.minecraft.item.Food;
public class FoodList {
public static Food sea_food = (new Food.Builder()).hunger(4).saturation(0.6F).build();
}
I'm trying to create a food item, but I got this error in eclipse: (see attachment)
I have ./assets/(MyModID)/recipes and in this dictionary I have titan_item.json with this: But it's not loading the recipe (the titan_item is in the game available )
{
"type": "minecraft:crafting_shaped",
"pattern": [
"AAA",
"ASA",
"AAA"
],
"key": {
"A":
{
"item": "minecraft:obsidian"
},
"S":
{
"item": "minecraft:diamond"
}
},
"result": {
"item": "vanillaplusplus:titan_item"
}
}