Skip to content

Tutorial: Adding Menu Items (For modpack authors)

Chakyl edited this page Jul 7, 2026 · 4 revisions
{
	"item": "minecraft:baked_potato",
	"category": "main",
	"price": 1,
	"flavors": ["vegan", "hot", "light"],
	"themes": ["casual"]
}
  • *item - Id of the menu item
  • category("drink","main", "dessert") - What category the menu item is
  • price - How much the dish sells for. Tips are based off this value
  • themes - Array of themes the menu item has. Can use any single word description, all lowercase. Currently unimplemented.
  • flavors - Array of flavors the menu item has. Can use any single word description, all lowercase. Currently unimplemented.

Clone this wiki locally