Skip to content

Community Tags

Cursor Agent edited this page Jun 10, 2026 · 5 revisions

Community Tags

This page covers Nourished-specific item tags. For generic c:foods/* community tags and the classification pipeline, see the MarieLib Community Tags page.


πŸ”– Nutrient Tags β€” nourished:nutrients/*

These tags directly classify an item into a nutrient group. They are both generated by Nourished and readable as input.

nourished:nutrients/fruits
nourished:nutrients/vegetables
nourished:nutrients/proteins
nourished:nutrients/grains
nourished:nutrients/dairy

File location: data/nourished/tags/item/nutrients/<key>.json

Example:

{
  "values": [
    "mymod:starfruit",
    "mymod:dragonfruit"
  ]
}

πŸ₯© Raw Food Tags β€” nourished:raw_food/*

Controls which raw food penalty tier an item triggers when eaten uncooked.

Tag Penalty
nourished:raw_food/fine No penalty (explicitly safe)
nourished:raw_food/mild Hunger for 30 seconds
nourished:raw_food/medium Slowness + Weakness for 60 seconds
nourished:raw_food/severe Poison + Nausea + Blindness for 60 seconds

Example:

{
  "values": [
    "mymod:raw_mystery_meat"
  ]
}

Path: data/nourished/tags/item/raw_food/<tier>.json


🍽️ Behavior Tags

Tag What it does
nourished:meal Marks an item as a "heavy meal" for the Block Heavy Meals feature
nourished:light_food Marks an item as "light food" for the Block Light Food feature

Both are opt-in config features, off by default.


πŸ“¦ Adding Tags via Datapack

my_datapack/
└── data/
    └── nourished/
        └── tags/
            └── item/
                β”œβ”€β”€ nutrients/
                β”‚   β”œβ”€β”€ fruits.json
                β”‚   β”œβ”€β”€ vegetables.json
                β”‚   └── ...
                └── raw_food/
                    β”œβ”€β”€ mild.json
                    └── severe.json

You can reference other tags using the # prefix:

{
  "values": [
    "#farmersdelight:foods"
  ]
}

πŸ’‘ Tips

  • nourished:nutrients/* is the cleanest fix when auto-classification gets something wrong.
  • raw_food/fine exempts items that look raw but are safe (e.g. sushi, certain fruits).
  • For c:foods/* tags that help all mods classify food, see MarieLib Community Tags.

πŸ“š Related Pages

Clone this wiki locally