Skip to content

Prevent Shape Ability Use

Prevents the player from using their shape ability.

Type ID: shappoli:prevent_shape_ability_use

Note

This action requires Woodwalkers to be installed.

Note

In the context of this power type, the 'actor' entity is the entity that has the power whilst the 'target' entity is the actor's shape. If the player is in their original form, 'actor' and 'target' will be the same entity.

Fields

Field Type Default Description
bientity_condition Bi-entity Condition Type optional If specified, the shape ability use will only be prevented if this condition is met.

Examples

{
  "type": "shappoli:prevent_shape_ability_use"
}

This example will completely prevent the player from using their shape ability.

{
  "type": "shappoli:prevent_shape_ability_use",
  "bientity_condition": {
    "type": "apoli:target_condition",
    "condition": {
      "type": "apoli:entity_type",
      "entity_type": "minecraft:blaze"
    }
  }
}

This example will prevent the player from using their shape ability when they are in the shape of a blaze.