Custom Food Tag - gisellevonbingen-Minecraft/MineColonies_Tweaks GitHub Wiki
Summary
In MineColonies, food are separated to 4 grades.
- Tier 3
- Tier 2
- Tier 1
- Other
Some foods added from MineColonies are have tier, and there have special bonus. Other foods are no tier.
When colonists eat Tier 3 foods, they will got extra happiness bonus. When colonists eat Tier 1~2 foods, they will reset unhappiness timer.
Using Custom Food Tag can foods are have function like tiered food.
Tags
Items are tagged below tag added will be add tooltip.
Tag | Food Tier | Example |
---|---|---|
minecolonies_tweaks:great_food | 3 | fine_food.json |
minecolonies_tweaks:decent_food | 2 | decent_food.json |
minecolonies_tweaks:fine_food | 1 | great_food.json |
- | 0 | - |
Tier 3 - Great Food
Item tag minecolonies_tweaks:great_food
tagged items have same function like Tier 3 foods.
(data/minecolonies_tweaks/tags/items/great_food.json
)
Colonists will got extra happiness bonus.
Tier 2 - Decent Food
Item tag minecolonies_tweaks:decent_food
tagged items have same function like Tier 2 foods.
(data/minecolonies_tweaks/tags/items/decent_food.json
)
Colonists will reset unhappiness timer.
Tier 1 - Fine Food
Item tag minecolonies_tweaks:find_food
tagged items have same function like Tier 1 foods.
(data/minecolonies_tweaks/tags/items/find_food.json
)
Colonists will reset unhappiness timer.
Examples
data/minecolonies_tweaks/tags/items/great_food.json
{
"values": [
"minecraft:cooked_beef"
]
}
data/minecolonies_tweaks/tags/items/decent_food.json
{
"values": [
"minecraft:cooked_porkchop"
]
}
data/minecolonies_tweaks/tags/items/fine_food.json
{
"values": [
"minecraft:apple"
]
}