Entity Page
![]()
Page type: modonomicon:entity
Displays an Entity and optionally a custom name and text.
Attributes
entity_id (ResourceLocation, mandatory)
ResourceLocations of the entity to display.
tip
Supports appending entity NBT in the format minecraft:sheep{<nbt>}, like the minecraft data command.
text (DescriptionId or Component JSON, optional)
The page text. Can be styled using markdown.
scale (Float, optional)
Defaults to 1.0. Render scale for the entity.
offset (Float, optional)
Defaults to 0.0. Offset to move entity up/down on the page.
rotate (Boolean, optional)
Defaults to true. If true, slowly rotate entity.
default_rotation (Float, optional)
Defaults to -45.0. Default rotation to show the entity at (in degrees).
Usage Examples
<entry>.json:
{
...
"pages": [
{
"type": "modonomicon:entity",
"default_rotation": -45.0,
"entity_id": "minecraft:ender_dragon",
"name": "book.modonomicon.demo.features.entity.entity1.title",
"offset": 0.0,
"rotate": true,
"scale": 0.5,
"text": ""
}
]
}
/lang/*.json:
{
"book.modonomicon.demo.features.entity.entity1.title": "Custom Name"
}