Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Returns true when the subject entity is in lava.
Note
Does not require any parameters to work properly. It can be used as a standalone filter.
In Lava Properties
Name | Default Value | Type | Description | Example Values |
---|---|---|---|---|
operator | equals | Operator choices | (Optional) The comparison to apply with 'value'. | Armor Stand: "==" |
subject | self | Subject choices | (Optional) The subject of this filter test. | Allay: "self" |
test | not set | String | Allay: "in_lava" |
|
value | true | Boolean true/false | (Optional) true or false. | Armor Stand: true |
Operator choices
Value | Title | Description |
---|---|---|
!= | != | Test for inequality. |
< | < | Test for less-than the value. |
<= | <= | Test for less-than or equal to the value. |
<> | <> | Test for inequality. |
= | = | Test for equality. |
== | == | Test for equality. |
> | > | Test for greater-than the value. |
>= | >= | Test for greater-than or equal to the value. |
equals | Equals | Test for equality. |
not | Not | Test for inequality. |
Subject choices
Value | Title | Description |
---|---|---|
block | Block | The block involved with the interaction. |
damager | Damager | The damaging actor involved with the interaction. |
other | Other | The other member of an interaction, not the caller. |
parent | Parent | The caller's current parent. |
player | Player | The player involved with the interaction. |
self | Self | The entity or object calling the test |
target | Target | The caller's current target. |
Samples
At Full..:
{ "test": "in_lava", "subject": "self", "operator": "equals", "value": "true" }
At Short (using Defaults)..:
{ "test": "in_lava" }
Allay
{
"test": "in_lava",
"subject": "self"
}
Armor Stand
{
"test": "in_lava",
"subject": "self",
"operator": "==",
"value": true
}
Breeze
At /minecraft:entity/components/minecraft:behavior.jump_around_target/filters/all_of/2/:
{
"test": "in_lava",
"value": false
}
Creaking
{
"test": "in_lava"
}