-
Notifications
You must be signed in to change notification settings - Fork 3
Attribute Modification
liopyu edited this page Jun 21, 2025
·
17 revisions
The Entity Attribute Modification Event in EntityJS allows you to customize various entity attributes. This event shadows Forge's Entity Attribute Modification event. The event only modifies an entity's base existing attributes which are made on creation. It's done this way because attributes are made to be dynamically changed via various means (attribute modifiers for one) during game time.
This event is for entity attribute modification. For adding attributes the entity may not already have please visit the Attribute Creation Wiki Page.
π§ Attribute Modification | Adjust key attributes like health, damage, and speed to match your gameplay needs. |
π Compatibility | Works with both vanilla Minecraft mobs and custom entities created using EntityJS. |
π οΈ Debugging & Inspection | Inspect entity attributes, view their default values, and make adjustments accordingly. |
//attributes Startup Script
EntityJSEvents.attributes(event => {
/**
* While the entity builders come with pre-added default attributes you may
* add your own attributes here as well for more control over your entity's attributes.
* This also works to modify existing mob's attributes such as in this example we are modifying
* an allay's max health.
*/
event.modify('minecraft:allay', attribute => {
//Overwrite an allay's max health attribute setting it to 30.
attribute.add("minecraft:generic.max_health", 30)
})
//You are able to see existing attributes an entity may already have like so
event.getAttributes('allay').forEach(attribute => {
console.log(`Allay Attribute: ${attribute.descriptionId}: ${attribute.defaultValue}`)
})
// Returns a list of all entity types that can have their attributes modified by this event
console.log(event.getAllTypes())
})