-
Notifications
You must be signed in to change notification settings - Fork 1
Home

The mod adds various dinnerware to the game (just plates for now) as well as tray to efficiently carry them.
Plates can be placed, food can be put in them and eaten.
You can read more here:
Blocks and items reference vanilla textures so whatever resourcepack you install will be applied to the plates as well.
Barebones

Ashen 16x

Default HD 128x

By default, only edible items are allowed on plates. This can be disabled to allow any item/block on the plate.
If you want to add a few items that are edible, but not compatible by default, they should be added to the dinnerware:additional_food item tag provided by the mod.
Note that adding items to this tag does not guarantee they'll be able to be eaten as that still relies on FoodProperties to be present in item.
dinnerware/tags/items/additional_food.json
{
"values": []
}When Fragile plates option is enabled any entity coliding with plates from the sides or from above will cause them to break.
However, mod provides a dinnerware:fragile_plate_ignored tag, which is an entity type tag. Any entity inside it will not trigger plate breaking. By default it contains minecraft:item and minecraft:fishing_bobber.
dinnerware/tags/entity_types/fragile_plate_ignored.json
{
"values": [
"minecraft:item",
"minecraft:fishing_bobber"
]
}