Entity Glow

Power Type.

Other entities will appear as if they glow (as with the glowing status effect), but only for the player with this power.

Type ID: origins:entity_glow

Fields

Field Type Default Description
entity_condition Entity Condition optional If set, only entities which fulfill this condition will glow for the player with this power.

Example

{
    "type": "origins:entity_glow",
    "entity_condition": {
        "type": "origins:and",
        "conditions": [
            {
                "type": "origins:in_block_anywhere",
                "block_condition": {
                    "type": "origins:in_tag",
                    "tag": "origins:cobwebs"
                }
            },
            {
                "type": "origins:entity_group",
                "group": "arthropod",
                "inverted": true
            }
        ]
    }
}

This power makes all entities which are not arthropods glow when they're in cobwebs.