-
Notifications
You must be signed in to change notification settings - Fork 19
Datapack: Cosmetic Recipe
Tictim edited this page Mar 24, 2026
·
2 revisions
Cosmetic recipes are recipes that do not consume the ingredients. Cosmetic recipes have two kinds of inputs:
- One "main" item,
- and
one, or
one to eight, "reagent" items.
Reagent items do not get consumed during process. The result item will share identical NBT data or
components with the main item, such as custom name, dyes and enchantments.
Cosmetic items won't match the input if the main item is identical to the result item.
{
"type": "paraglider:cosmetic",
//
"input": { // ingredient
"tag": "paraglider:paragliders"
},
"reagent": { // ingredient
"tag": "forge:rods/wooden"
},
"result": "paraglider:paraglider", // item ID
// see vanilla recipe format
"group": "..."
}
{ "type": "paraglider:cosmetic", "input": { // ingredient "tag": "paraglider:paragliders" }, "reagents": [ // 1 ~ 8 entries { // ingredient "tag": "c:rods/wooden" } ], "result": "paraglider:paraglider", // item ID // see vanilla recipe format "category": "...", "group": "..." }