Creative Categories

experimental

Creative categories are the categories that determine where an item or block will appear inside of the creative inventory.

For Items

WARNING

As of 1.17.30 this feature is currently experimental and is currently available for both custom items & blocks. Make sure to use the 1.16.100+ format version!

Item categories applied with the item description direct it to a more broad field in the creative category, individual tabs. They need to be the same tab as the component creative_category. Such would be applied like the following example:

Copy
json
{
	"format_version": "1.16.100",
	"minecraft:item": {
		"description": {
			"identifier": "wiki:dagger",
			"category": "equipment"
		}
	}
}
1
2
3
4
5
6
7
8
9

Item categories applied with the item component creative_category direct it exactly where to go. Such would be applied like the following example:

Copy
json
{
	"minecraft:creative_category": {
		"parent": "itemGroup.name.sword"
	}
}
1
2
3
4
5

For Blocks

Block Categories are defined via menu_category, your custom block will not show up in the Creative Inventory if you don't have this, here's an example:

Copy
json
{
	"format_version": "1.19.50",
	"minecraft:block": {
		"description": {
			"identifier": "wiki:balsa",
			"menu_category": {
				"category": "nature",
				"group": "itemGroup.name.wood"
			}
		}
	}
}
1
2
3
4
5
6
7
8
9
10
11
12

As you can see, menu_category accepts 2 optional children, the category child & the group child. A list of groups & categories can be found below. You can also use is_hidden_in_commands to make the block not show in commands.

List of Creative Tabs

For use with description parameter, category

Category
commands
construction
equipment
items
nature
none

List of Creative Categories

For use with the group parameter

Creative Categories:
itemGroup.name.anvil
itemGroup.name.arrow
itemGroup.name.axe
itemGroup.name.banner
itemGroup.name.banner_pattern
itemGroup.name.bed
itemGroup.name.boat
itemGroup.name.boots
itemGroup.name.buttons
itemGroup.name.candles
itemGroup.name.chalkboard
itemGroup.name.chest
itemGroup.name.chestboat
itemGroup.name.chestplate
itemGroup.name.concrete
itemGroup.name.concretePowder
itemGroup.name.cookedFood
itemGroup.name.copper
itemGroup.name.coral
itemGroup.name.coral_decorations
itemGroup.name.crop
itemGroup.name.door
itemGroup.name.dye
itemGroup.name.enchantedBook
itemGroup.name.fence
itemGroup.name.fenceGate
itemGroup.name.firework
itemGroup.name.fireworkStars
itemGroup.name.flower
itemGroup.name.glass
itemGroup.name.glassPane
itemGroup.name.glazedTerracotta
itemGroup.name.goatHorn
itemGroup.name.grass
itemGroup.name.helmet
itemGroup.name.hoe
itemGroup.name.horseArmor
itemGroup.name.leaves
itemGroup.name.leggings
itemGroup.name.lingeringPotion
itemGroup.name.log
itemGroup.name.minecart
itemGroup.name.miscFood
itemGroup.name.mobEgg
itemGroup.name.monsterStoneEgg
itemGroup.name.mushroom
itemGroup.name.netherWartBlock
itemGroup.name.ore
itemGroup.name.permission
itemGroup.name.pickaxe
itemGroup.name.planks
itemGroup.name.potion
itemGroup.name.pressurePlate
itemGroup.name.rail
itemGroup.name.rawFood
itemGroup.name.record
itemGroup.name.sandstone
itemGroup.name.sapling
itemGroup.name.sculk
itemGroup.name.seed
itemGroup.name.shovel
itemGroup.name.shulkerBox
itemGroup.name.sign
itemGroup.name.skull
itemGroup.name.slab
itemGroup.name.splashPotion
itemGroup.name.stainedClay
itemGroup.name.stairs
itemGroup.name.stone
itemGroup.name.stoneBrick
itemGroup.name.sword
itemGroup.name.trapdoor
itemGroup.name.walls
itemGroup.name.wood
itemGroup.name.wool
itemGroup.name.woolCarpet

Last updated for 1.19.80

Contributors

SmokeyStackMedicalJewel105TheItsNameless