-
Notifications
You must be signed in to change notification settings - Fork 1
Community Tags
Cursor Agent edited this page Jun 10, 2026
·
5 revisions
This page covers Nourished-specific item tags. For generic c:foods/* community tags and the classification pipeline, see the MarieLib Community Tags page.
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"
]
}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
| 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.
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"
]
}-
nourished:nutrients/*is the cleanest fix when auto-classification gets something wrong. -
raw_food/fineexempts 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.
Nourished Β· Food variety finally matters Β· Documentation for 0.2.x
Modrinth Β· GitHub Β· Report an Issue