Processed new entity data

This commit is contained in:
DaanV2
2022-09-20 19:33:11 +02:00
parent dc7caebfff
commit 0166d1c31f
6 changed files with 71 additions and 35 deletions

View File

@@ -0,0 +1,27 @@
{
"$id": "blockception.minecraft.behavior.entities.minecraft.game_event_movement_tracking",
"additionalProperties": false,
"description": "Allows an entity to emit `entityMove`, `swim` and `flap` game events, depending on the block the entity is moving through. It is added by default to every mob. Add it again to override its behavior.",
"type": "object",
"title": "Game Event Movement Tracking",
"properties": {
"emit_flap": {
"title": "emit flap",
"type": "boolean",
"default": false,
"description": "If true, the `flap` game event will be emitted when the entity moves through air."
},
"emit_move": {
"title": "emit move",
"type": "boolean",
"default": true,
"description": "If true, the `entityMove` game event will be emitted when the entity moves on ground or through a solid."
},
"emit_swim": {
"title": "emit swim",
"type": "boolean",
"default": true,
"description": "If true, the `swim` game event will be emitted when the entity moves through a liquid."
}
}
}