Entity Information (Legacy Fabric) - Entity Information
The Entity Information mod provides a convenient tool for obtaining detailed information about any entities in Minecraft using a special Information Stick. This is an indispensable assistant for mod developers and anyone involved in debugging game content.
Requirements: The mod requires the Collective (Fabric) library and Fabric API to function.

To obtain the Information Stick, use the commands /informationstick or the shortened version /ist.

After hitting an entity with the stick, various useful information is displayed in the chat, which can be used for debugging or developing other mods.
Variable Description:
Name (1.12): entity.getName();
Name (1.13+): entity.getName().getString();
EntityName: entity.toString().split("\[")[0];
EntityId: entity.getEntityId();
UUID: entity.getUniqueID();
Position: entity.getPosition().toString().replace("BlockPos{", "").replace("}", "");
isSilent: entity.isSilent();
ticksExisted: entity.ticksExisted;
Note: This is the legacy version for Fabric 1.16 and 1.17. New files and updates are available on the main project page.