diff --git a/locales/en.json b/locales/en.json index 0b19de92..d39f8d55 100644 --- a/locales/en.json +++ b/locales/en.json @@ -243,6 +243,12 @@ "nbt": "NBT", "location": "Location", "distance": "Distance", + "flags": "Flags", + "isOnFire": "On Fire", + "isSneaking": "Sneaking", + "isSprinting": "Sprinting", + "isSwimming": "Swimming", + "isBaby": "Baby", "status_effect": "Effects", "status_effect_add": "Add Effect", "status_effect_remove": "Remove Effect" diff --git a/schemas/1.14.json b/schemas/1.14.json index 89cf0e41..8a388ea6 100644 --- a/schemas/1.14.json +++ b/schemas/1.14.json @@ -780,6 +780,40 @@ "value": "distance", "collapse": true }, + { + "id": "flags", + "type": "object", + "translate": "$entity.flags", + "color": "dark", + "collapse": true, + "fields": [ + { + "id": "is_on_fire", + "type": "boolean", + "translate": "$entity.isOnFire" + }, + { + "id": "is_sneaking", + "type": "boolean", + "translate": "$entity.isSneaking" + }, + { + "id": "is_sprinting", + "type": "boolean", + "translate": "$entity.isSprinting" + }, + { + "id": "is_swimming", + "type": "boolean", + "translate": "$entity.isSwimming" + }, + { + "id": "is_baby", + "type": "boolean", + "translate": "$entity.isBaby" + } + ] + }, { "id": "effects", "type": "map",