{
  "fields": [
    {
      "id": "damage_conditions",
      "title": "Damage Conditions",
      "description": "List of damage conditions that when met can cause damage to the entity.",
      "dataType": 15,
      "subForm": {
        "description": "List of damage conditions that when met can cause damage to the entity.",
        "fields": [
          {
            "id": "cause",
            "title": "Cause",
            "description": "The kind of damage that is caused to the entity. Various armors and spells use this to determine if the entity is immune.",
            "dataType": 2
          },
          {
            "id": "damage_per_tick",
            "title": "Damage Per Tick",
            "description": "The amount of damage done each tick that the conditions are met.",
            "defaultValue": 1,
            "dataType": 0
          },
          {
            "id": "filters",
            "title": "Filters",
            "description": "The set of conditions that must be satisfied before the entity takes the defined damage.",
            "dataType": 20
          }
        ]
      },
      "samples": {
        "/vanilla/behavior_pack/entities/allay.json": [
          {
            "path": "/minecraft:entity/components/minecraft:hurt_on_condition/",
            "content": [
              {
                "filters": {
                  "test": "in_lava",
                  "subject": "self",
                  "operator": "==",
                  "value": true
                },
                "cause": "lava",
                "damage_per_tick": 4
              }
            ]
          }
        ],
        "/vanilla/behavior_pack/entities/armadillo.json": [
          {
            "path": "/minecraft:entity/components/minecraft:hurt_on_condition/",
            "content": [
              {
                "filters": {
                  "test": "in_lava",
                  "subject": "self"
                },
                "cause": "lava",
                "damage_per_tick": 4
              }
            ]
          }
        ]
      }
    }
  ],
  "description": "Defines a set of conditions under which an entity should take damage.",
  "title": "Hurt On Condition",
  "samples": {
    "/vanilla/behavior_pack/entities/allay.json": [
      {
        "path": "/minecraft:entity/components/minecraft:hurt_on_condition/",
        "content": {
          "damage_conditions": [
            {
              "filters": {
                "test": "in_lava",
                "subject": "self",
                "operator": "==",
                "value": true
              },
              "cause": "lava",
              "damage_per_tick": 4
            }
          ]
        }
      }
    ],
    "/vanilla/behavior_pack/entities/armadillo.json": [
      {
        "path": "/minecraft:entity/components/minecraft:hurt_on_condition/",
        "content": {
          "damage_conditions": [
            {
              "filters": {
                "test": "in_lava",
                "subject": "self"
              },
              "cause": "lava",
              "damage_per_tick": 4
            }
          ]
        }
      }
    ],
    "/vanilla/behavior_pack/entities/armor_stand.json": [
      {
        "path": "/minecraft:entity/components/minecraft:hurt_on_condition/",
        "content": {
          "damage_conditions": [
            {
              "filters": {
                "test": "in_lava",
                "subject": "self",
                "operator": "==",
                "value": true
              },
              "cause": "lava",
              "damage_per_tick": 4
            }
          ]
        }
      }
    ],
    "/vanilla/behavior_pack/entities/arrow.json": [
      {
        "path": "/minecraft:entity/components/minecraft:hurt_on_condition/",
        "content": {
          "damage_conditions": [
            {
              "filters": {
                "test": "in_lava",
                "subject": "self",
                "operator": "==",
                "value": true
              },
              "cause": "lava",
              "damage_per_tick": 4
            }
          ]
        }
      }
    ],
    "/vanilla/behavior_pack/entities/axolotl.json": [
      {
        "path": "/minecraft:entity/components/minecraft:hurt_on_condition/",
        "content": {
          "damage_conditions": [
            {
              "filters": {
                "test": "in_lava",
                "subject": "self",
                "operator": "==",
                "value": true
              },
              "cause": "lava",
              "damage_per_tick": 4
            }
          ]
        }
      }
    ],
    "/vanilla/behavior_pack/entities/bat.json": [
      {
        "path": "/minecraft:entity/components/minecraft:hurt_on_condition/",
        "content": {
          "damage_conditions": [
            {
              "filters": {
                "test": "in_lava",
                "subject": "self",
                "operator": "==",
                "value": true
              },
              "cause": "lava",
              "damage_per_tick": 4
            }
          ]
        }
      }
    ],
    "/vanilla/behavior_pack/entities/blaze.json": [
      {
        "path": "/minecraft:entity/components/minecraft:hurt_on_condition/",
        "content": {
          "damage_conditions": [
            {
              "filters": {
                "test": "in_contact_with_water",
                "operator": "==",
                "value": true
              },
              "cause": "drowning",
              "damage_per_tick": 1
            }
          ]
        }
      }
    ],
    "/vanilla/behavior_pack/entities/boat.json": [
      {
        "path": "/minecraft:entity/components/minecraft:hurt_on_condition/",
        "content": {
          "damage_conditions": [
            {
              "filters": {
                "test": "in_lava",
                "subject": "self"
              },
              "cause": "lava",
              "damage_per_tick": 4
            }
          ]
        }
      }
    ],
    "/vanilla/behavior_pack/entities/bogged.json": [
      {
        "path": "/minecraft:entity/components/minecraft:hurt_on_condition/",
        "content": {
          "damage_conditions": [
            {
              "filters": {
                "test": "in_lava",
                "subject": "self",
                "operator": "==",
                "value": true
              },
              "cause": "lava",
              "damage_per_tick": 4
            }
          ]
        }
      }
    ],
    "/vanilla/behavior_pack/entities/breeze.json": [
      {
        "path": "/minecraft:entity/components/minecraft:hurt_on_condition/",
        "content": {
          "damage_conditions": [
            {
              "filters": {
                "test": "in_lava",
                "subject": "self",
                "operator": "==",
                "value": true
              },
              "cause": "lava",
              "damage_per_tick": 4
            }
          ]
        }
      }
    ],
    "/vanilla/behavior_pack/entities/camel.json": [
      {
        "path": "/minecraft:entity/components/minecraft:hurt_on_condition/",
        "content": {
          "damage_conditions": [
            {
              "filters": {
                "test": "in_lava",
                "subject": "self",
                "operator": "==",
                "value": true
              },
              "cause": "lava",
              "damage_per_tick": 4
            }
          ]
        }
      }
    ],
    "/vanilla/behavior_pack/entities/cat.json": [
      {
        "path": "/minecraft:entity/components/minecraft:hurt_on_condition/",
        "content": {
          "damage_conditions": [
            {
              "filters": {
                "test": "in_lava",
                "subject": "self",
                "operator": "==",
                "value": true
              },
              "cause": "lava",
              "damage_per_tick": 4
            }
          ]
        }
      }
    ],
    "/vanilla/behavior_pack/entities/cave_spider.json": [
      {
        "path": "/minecraft:entity/components/minecraft:hurt_on_condition/",
        "content": {
          "damage_conditions": [
            {
              "filters": {
                "test": "in_lava",
                "subject": "self"
              },
              "cause": "lava",
              "damage_per_tick": 4
            }
          ]
        }
      }
    ],
    "/vanilla/behavior_pack/entities/chest_boat.json": [
      {
        "path": "/minecraft:entity/components/minecraft:hurt_on_condition/",
        "content": {
          "damage_conditions": [
            {
              "filters": {
                "test": "in_lava",
                "subject": "self"
              },
              "cause": "lava",
              "damage_per_tick": 4
            }
          ]
        }
      }
    ],
    "/vanilla/behavior_pack/entities/chicken.json": [
      {
        "path": "/minecraft:entity/components/minecraft:hurt_on_condition/",
        "content": {
          "damage_conditions": [
            {
              "filters": {
                "test": "in_lava",
                "subject": "self",
                "operator": "==",
                "value": true
              },
              "cause": "lava",
              "damage_per_tick": 4
            }
          ]
        }
      }
    ],
    "/vanilla/behavior_pack/entities/cow.json": [
      {
        "path": "/minecraft:entity/components/minecraft:hurt_on_condition/",
        "content": {
          "damage_conditions": [
            {
              "filters": {
                "test": "in_lava",
                "subject": "self",
                "operator": "==",
                "value": true
              },
              "cause": "lava",
              "damage_per_tick": 4
            }
          ]
        }
      }
    ],
    "/vanilla/behavior_pack/entities/creaking.json": [
      {
        "path": "/minecraft:entity/component_groups/minecraft:spawned_by_player/minecraft:hurt_on_condition/",
        "content": {
          "damage_conditions": [
            {
              "filters": {
                "test": "in_lava"
              },
              "cause": "lava",
              "damage_per_tick": 4
            }
          ]
        }
      }
    ],
    "/vanilla/behavior_pack/entities/creeper.json": [
      {
        "path": "/minecraft:entity/components/minecraft:hurt_on_condition/",
        "content": {
          "damage_conditions": [
            {
              "filters": {
                "test": "in_lava",
                "subject": "self",
                "operator": "==",
                "value": true
              },
              "cause": "lava",
              "damage_per_tick": 4
            }
          ]
        }
      }
    ],
    "/vanilla/behavior_pack/entities/dolphin.json": [
      {
        "path": "/minecraft:entity/components/minecraft:hurt_on_condition/",
        "content": {
          "damage_conditions": [
            {
              "filters": {
                "test": "in_lava",
                "subject": "self",
                "operator": "==",
                "value": true
              },
              "cause": "lava",
              "damage_per_tick": 4
            }
          ]
        }
      }
    ],
    "/vanilla/behavior_pack/entities/donkey.json": [
      {
        "path": "/minecraft:entity/components/minecraft:hurt_on_condition/",
        "content": {
          "damage_conditions": [
            {
              "filters": {
                "test": "in_lava",
                "subject": "self",
                "operator": "==",
                "value": true
              },
              "cause": "lava",
              "damage_per_tick": 4
            }
          ]
        }
      }
    ],
    "/vanilla/behavior_pack/entities/drowned.json": [
      {
        "path": "/minecraft:entity/components/minecraft:hurt_on_condition/",
        "content": {
          "damage_conditions": [
            {
              "filters": {
                "test": "in_lava",
                "subject": "self",
                "operator": "==",
                "value": true
              },
              "cause": "lava",
              "damage_per_tick": 4
            }
          ]
        }
      }
    ],
    "/vanilla/behavior_pack/entities/elder_guardian.json": [
      {
        "path": "/minecraft:entity/components/minecraft:hurt_on_condition/",
        "content": {
          "damage_conditions": [
            {
              "filters": {
                "test": "in_lava",
                "subject": "self",
                "operator": "==",
                "value": true
              },
              "cause": "lava",
              "damage_per_tick": 4
            }
          ]
        }
      }
    ],
    "/vanilla/behavior_pack/entities/enderman.json": [
      {
        "path": "/minecraft:entity/components/minecraft:hurt_on_condition/",
        "content": {
          "damage_conditions": [
            {
              "filters": {
                "test": "in_lava",
                "subject": "self"
              },
              "cause": "lava",
              "damage_per_tick": 4
            },
            {
              "filters": {
                "test": "in_contact_with_water"
              },
              "cause": "drowning",
              "damage_per_tick": 1
            }
          ]
        }
      }
    ],
    "/vanilla/behavior_pack/entities/endermite.json": [
      {
        "path": "/minecraft:entity/components/minecraft:hurt_on_condition/",
        "content": {
          "damage_conditions": [
            {
              "filters": {
                "test": "in_lava",
                "subject": "self",
                "operator": "==",
                "value": true
              },
              "cause": "lava",
              "damage_per_tick": 4
            }
          ]
        }
      }
    ],
    "/vanilla/behavior_pack/entities/evocation_illager.json": [
      {
        "path": "/minecraft:entity/components/minecraft:hurt_on_condition/",
        "content": {
          "damage_conditions": [
            {
              "filters": {
                "test": "in_lava",
                "subject": "self",
                "operator": "==",
                "value": true
              },
              "cause": "lava",
              "damage_per_tick": 4
            }
          ]
        }
      }
    ],
    "/vanilla/behavior_pack/entities/fish.json": [
      {
        "path": "/minecraft:entity/components/minecraft:hurt_on_condition/",
        "content": {
          "damage_conditions": [
            {
              "filters": {
                "test": "in_lava",
                "subject": "self",
                "operator": "==",
                "value": true
              },
              "cause": "lava",
              "damage_per_tick": 4
            }
          ]
        }
      }
    ],
    "/vanilla/behavior_pack/entities/fox.json": [
      {
        "path": "/minecraft:entity/components/minecraft:hurt_on_condition/",
        "content": {
          "damage_conditions": [
            {
              "filters": {
                "test": "in_lava",
                "subject": "self"
              },
              "cause": "lava",
              "damage_per_tick": 4
            }
          ]
        }
      }
    ],
    "/vanilla/behavior_pack/entities/frog.json": [
      {
        "path": "/minecraft:entity/components/minecraft:hurt_on_condition/",
        "content": {
          "damage_conditions": [
            {
              "filters": {
                "test": "in_lava",
                "subject": "self",
                "operator": "==",
                "value": true
              },
              "cause": "lava",
              "damage_per_tick": 4
            }
          ]
        }
      }
    ],
    "/vanilla/behavior_pack/entities/glow_squid.json": [
      {
        "path": "/minecraft:entity/components/minecraft:hurt_on_condition/",
        "content": {
          "damage_conditions": [
            {
              "filters": {
                "test": "in_lava",
                "subject": "self",
                "operator": "==",
                "value": true
              },
              "cause": "lava",
              "damage_per_tick": 4
            }
          ]
        }
      }
    ],
    "/vanilla/behavior_pack/entities/goat.json": [
      {
        "path": "/minecraft:entity/components/minecraft:hurt_on_condition/",
        "content": {
          "damage_conditions": [
            {
              "filters": {
                "test": "in_lava",
                "subject": "self",
                "operator": "==",
                "value": true
              },
              "cause": "lava",
              "damage_per_tick": 4
            }
          ]
        }
      }
    ],
    "/vanilla/behavior_pack/entities/guardian.json": [
      {
        "path": "/minecraft:entity/components/minecraft:hurt_on_condition/",
        "content": {
          "damage_conditions": [
            {
              "filters": {
                "test": "in_lava",
                "subject": "self",
                "operator": "==",
                "value": true
              },
              "cause": "lava",
              "damage_per_tick": 4
            }
          ]
        }
      }
    ],
    "/vanilla/behavior_pack/entities/hoglin.json": [
      {
        "path": "/minecraft:entity/components/minecraft:hurt_on_condition/",
        "content": {
          "damage_conditions": [
            {
              "filters": {
                "test": "in_lava",
                "subject": "self",
                "operator": "==",
                "value": true
              },
              "cause": "lava",
              "damage_per_tick": 4
            }
          ]
        }
      }
    ],
    "/vanilla/behavior_pack/entities/horse.json": [
      {
        "path": "/minecraft:entity/components/minecraft:hurt_on_condition/",
        "content": {
          "damage_conditions": [
            {
              "filters": {
                "test": "in_lava",
                "subject": "self",
                "operator": "==",
                "value": true
              },
              "cause": "lava",
              "damage_per_tick": 4
            }
          ]
        }
      }
    ],
    "/vanilla/behavior_pack/entities/husk.json": [
      {
        "path": "/minecraft:entity/components/minecraft:hurt_on_condition/",
        "content": {
          "damage_conditions": [
            {
              "filters": {
                "test": "in_lava",
                "subject": "self",
                "operator": "==",
                "value": true
              },
              "cause": "lava",
              "damage_per_tick": 4
            }
          ]
        }
      }
    ],
    "/vanilla/behavior_pack/entities/iron_golem.json": [
      {
        "path": "/minecraft:entity/components/minecraft:hurt_on_condition/",
        "content": {
          "damage_conditions": [
            {
              "filters": {
                "test": "in_lava",
                "subject": "self",
                "operator": "==",
                "value": true
              },
              "cause": "lava",
              "damage_per_tick": 4
            }
          ]
        }
      }
    ],
    "/vanilla/behavior_pack/entities/llama.json": [
      {
        "path": "/minecraft:entity/components/minecraft:hurt_on_condition/",
        "content": {
          "damage_conditions": [
            {
              "filters": {
                "test": "in_lava",
                "subject": "self"
              },
              "cause": "lava",
              "damage_per_tick": 4
            }
          ]
        }
      }
    ],
    "/vanilla/behavior_pack/entities/mooshroom.json": [
      {
        "path": "/minecraft:entity/components/minecraft:hurt_on_condition/",
        "content": {
          "damage_conditions": [
            {
              "filters": {
                "test": "in_lava",
                "subject": "self",
                "operator": "==",
                "value": true
              },
              "cause": "lava",
              "damage_per_tick": 4
            }
          ]
        }
      }
    ],
    "/vanilla/behavior_pack/entities/mule.json": [
      {
        "path": "/minecraft:entity/components/minecraft:hurt_on_condition/",
        "content": {
          "damage_conditions": [
            {
              "filters": {
                "test": "in_lava",
                "subject": "self",
                "operator": "==",
                "value": true
              },
              "cause": "lava",
              "damage_per_tick": 4
            }
          ]
        }
      }
    ],
    "/vanilla/behavior_pack/entities/ocelot.json": [
      {
        "path": "/minecraft:entity/components/minecraft:hurt_on_condition/",
        "content": {
          "damage_conditions": [
            {
              "filters": {
                "test": "in_lava",
                "subject": "self",
                "operator": "==",
                "value": true
              },
              "cause": "lava",
              "damage_per_tick": 4
            }
          ]
        }
      }
    ],
    "/vanilla/behavior_pack/entities/panda.json": [
      {
        "path": "/minecraft:entity/components/minecraft:hurt_on_condition/",
        "content": {
          "damage_conditions": [
            {
              "filters": {
                "test": "in_lava",
                "subject": "self",
                "operator": "==",
                "value": true
              },
              "cause": "lava",
              "damage_per_tick": 4
            }
          ]
        }
      }
    ],
    "/vanilla/behavior_pack/entities/parrot.json": [
      {
        "path": "/minecraft:entity/components/minecraft:hurt_on_condition/",
        "content": {
          "damage_conditions": [
            {
              "filters": {
                "test": "in_lava",
                "subject": "self",
                "operator": "==",
                "value": true
              },
              "cause": "lava",
              "damage_per_tick": 4
            }
          ]
        }
      }
    ],
    "/vanilla/behavior_pack/entities/phantom.json": [
      {
        "path": "/minecraft:entity/components/minecraft:hurt_on_condition/",
        "content": {
          "damage_conditions": [
            {
              "filters": {
                "test": "in_lava",
                "subject": "self",
                "operator": "==",
                "value": true
              },
              "cause": "lava",
              "damage_per_tick": 4
            }
          ]
        }
      }
    ],
    "/vanilla/behavior_pack/entities/pig.json": [
      {
        "path": "/minecraft:entity/components/minecraft:hurt_on_condition/",
        "content": {
          "damage_conditions": [
            {
              "filters": {
                "test": "in_lava",
                "subject": "self",
                "operator": "==",
                "value": true
              },
              "cause": "lava",
              "damage_per_tick": 4
            }
          ]
        }
      }
    ],
    "/vanilla/behavior_pack/entities/piglin_brute.json": [
      {
        "path": "/minecraft:entity/components/minecraft:hurt_on_condition/",
        "content": {
          "damage_conditions": [
            {
              "filters": {
                "test": "in_lava",
                "subject": "self",
                "operator": "==",
                "value": true
              },
              "cause": "lava",
              "damage_per_tick": 4
            }
          ]
        }
      }
    ],
    "/vanilla/behavior_pack/entities/piglin.json": [
      {
        "path": "/minecraft:entity/components/minecraft:hurt_on_condition/",
        "content": {
          "damage_conditions": [
            {
              "filters": {
                "test": "in_lava",
                "subject": "self",
                "operator": "==",
                "value": true
              },
              "cause": "lava",
              "damage_per_tick": 4
            }
          ]
        }
      }
    ],
    "/vanilla/behavior_pack/entities/pillager.json": [
      {
        "path": "/minecraft:entity/components/minecraft:hurt_on_condition/",
        "content": {
          "damage_conditions": [
            {
              "filters": {
                "test": "in_lava",
                "subject": "self",
                "operator": "==",
                "value": true
              },
              "cause": "lava",
              "damage_per_tick": 4
            }
          ]
        }
      }
    ],
    "/vanilla/behavior_pack/entities/player.json": [
      {
        "path": "/minecraft:entity/components/minecraft:hurt_on_condition/",
        "content": {
          "damage_conditions": [
            {
              "filters": {
                "test": "in_lava",
                "subject": "self",
                "operator": "==",
                "value": true
              },
              "cause": "lava",
              "damage_per_tick": 4
            }
          ]
        }
      }
    ],
    "/vanilla/behavior_pack/entities/polar_bear.json": [
      {
        "path": "/minecraft:entity/components/minecraft:hurt_on_condition/",
        "content": {
          "damage_conditions": [
            {
              "filters": {
                "test": "in_lava",
                "subject": "self",
                "operator": "==",
                "value": true
              },
              "cause": "lava",
              "damage_per_tick": 4
            }
          ]
        }
      }
    ],
    "/vanilla/behavior_pack/entities/pufferfish.json": [
      {
        "path": "/minecraft:entity/components/minecraft:hurt_on_condition/",
        "content": {
          "damage_conditions": [
            {
              "filters": {
                "test": "in_lava",
                "subject": "self",
                "operator": "==",
                "value": true
              },
              "cause": "lava",
              "damage_per_tick": 4
            }
          ]
        }
      }
    ],
    "/vanilla/behavior_pack/entities/rabbit.json": [
      {
        "path": "/minecraft:entity/components/minecraft:hurt_on_condition/",
        "content": {
          "damage_conditions": [
            {
              "filters": {
                "test": "in_lava",
                "subject": "self",
                "operator": "==",
                "value": true
              },
              "cause": "lava",
              "damage_per_tick": 4
            }
          ]
        }
      }
    ],
    "/vanilla/behavior_pack/entities/ravager.json": [
      {
        "path": "/minecraft:entity/components/minecraft:hurt_on_condition/",
        "content": {
          "damage_conditions": [
            {
              "filters": {
                "test": "in_lava",
                "subject": "self"
              },
              "cause": "lava",
              "damage_per_tick": 4
            }
          ]
        }
      }
    ],
    "/vanilla/behavior_pack/entities/salmon.json": [
      {
        "path": "/minecraft:entity/components/minecraft:hurt_on_condition/",
        "content": {
          "damage_conditions": [
            {
              "filters": {
                "test": "in_lava",
                "subject": "self",
                "operator": "==",
                "value": true
              },
              "cause": "lava",
              "damage_per_tick": 4
            }
          ]
        }
      }
    ],
    "/vanilla/behavior_pack/entities/sheep.json": [
      {
        "path": "/minecraft:entity/components/minecraft:hurt_on_condition/",
        "content": {
          "damage_conditions": [
            {
              "filters": {
                "test": "in_lava",
                "subject": "self",
                "operator": "==",
                "value": true
              },
              "cause": "lava",
              "damage_per_tick": 4
            }
          ]
        }
      }
    ],
    "/vanilla/behavior_pack/entities/silverfish.json": [
      {
        "path": "/minecraft:entity/components/minecraft:hurt_on_condition/",
        "content": {
          "damage_conditions": [
            {
              "filters": {
                "test": "in_lava",
                "subject": "self",
                "operator": "==",
                "value": true
              },
              "cause": "lava",
              "damage_per_tick": 4
            }
          ]
        }
      }
    ],
    "/vanilla/behavior_pack/entities/skeleton_horse.json": [
      {
        "path": "/minecraft:entity/components/minecraft:hurt_on_condition/",
        "content": {
          "damage_conditions": [
            {
              "filters": {
                "test": "in_lava",
                "subject": "self",
                "operator": "==",
                "value": true
              },
              "cause": "lava",
              "damage_per_tick": 4
            }
          ]
        }
      }
    ],
    "/vanilla/behavior_pack/entities/skeleton.json": [
      {
        "path": "/minecraft:entity/components/minecraft:hurt_on_condition/",
        "content": {
          "damage_conditions": [
            {
              "filters": {
                "test": "in_lava",
                "subject": "self",
                "operator": "==",
                "value": true
              },
              "cause": "lava",
              "damage_per_tick": 4
            }
          ]
        }
      }
    ],
    "/vanilla/behavior_pack/entities/slime.json": [
      {
        "path": "/minecraft:entity/components/minecraft:hurt_on_condition/",
        "content": {
          "damage_conditions": [
            {
              "filters": {
                "test": "in_lava",
                "subject": "self",
                "operator": "==",
                "value": true
              },
              "cause": "lava",
              "damage_per_tick": 4
            }
          ]
        }
      }
    ],
    "/vanilla/behavior_pack/entities/sniffer.json": [
      {
        "path": "/minecraft:entity/components/minecraft:hurt_on_condition/",
        "content": {
          "damage_conditions": [
            {
              "filters": {
                "test": "in_lava",
                "subject": "self"
              },
              "cause": "lava",
              "damage_per_tick": 4
            }
          ]
        }
      }
    ],
    "/vanilla/behavior_pack/entities/snow_golem.json": [
      {
        "path": "/minecraft:entity/components/minecraft:hurt_on_condition/",
        "content": {
          "damage_conditions": [
            {
              "filters": {
                "test": "in_lava",
                "subject": "self",
                "operator": "==",
                "value": true
              },
              "cause": "lava",
              "damage_per_tick": 4
            },
            {
              "filters": {
                "all_of": [
                  {
                    "test": "is_temperature_value",
                    "operator": ">",
                    "value": 1
                  },
                  {
                    "test": "has_component",
                    "subject": "self",
                    "operator": "!=",
                    "value": "minecraft:effect.fire_resistance"
                  }
                ]
              },
              "cause": "temperature",
              "damage_per_tick": 1
            },
            {
              "filters": {
                "test": "in_contact_with_water",
                "operator": "==",
                "value": true
              },
              "cause": "drowning",
              "damage_per_tick": 1
            }
          ]
        }
      }
    ],
    "/vanilla/behavior_pack/entities/spider.json": [
      {
        "path": "/minecraft:entity/components/minecraft:hurt_on_condition/",
        "content": {
          "damage_conditions": [
            {
              "filters": {
                "test": "in_lava",
                "subject": "self"
              },
              "cause": "lava",
              "damage_per_tick": 4
            }
          ]
        }
      }
    ],
    "/vanilla/behavior_pack/entities/squid.json": [
      {
        "path": "/minecraft:entity/components/minecraft:hurt_on_condition/",
        "content": {
          "damage_conditions": [
            {
              "filters": {
                "test": "in_lava",
                "subject": "self",
                "operator": "==",
                "value": true
              },
              "cause": "lava",
              "damage_per_tick": 4
            }
          ]
        }
      }
    ],
    "/vanilla/behavior_pack/entities/stray.json": [
      {
        "path": "/minecraft:entity/components/minecraft:hurt_on_condition/",
        "content": {
          "damage_conditions": [
            {
              "filters": {
                "test": "in_lava",
                "subject": "self",
                "operator": "==",
                "value": true
              },
              "cause": "lava",
              "damage_per_tick": 4
            }
          ]
        }
      }
    ],
    "/vanilla/behavior_pack/entities/strider.json": [
      {
        "path": "/minecraft:entity/components/minecraft:hurt_on_condition/",
        "content": {
          "damage_conditions": [
            {
              "filters": {
                "test": "in_contact_with_water",
                "operator": "==",
                "value": true
              },
              "cause": "drowning",
              "damage_per_tick": 1
            }
          ]
        }
      }
    ],
    "/vanilla/behavior_pack/entities/tadpole.json": [
      {
        "path": "/minecraft:entity/components/minecraft:hurt_on_condition/",
        "content": {
          "damage_conditions": [
            {
              "filters": {
                "test": "in_lava",
                "subject": "self",
                "operator": "==",
                "value": true
              },
              "cause": "lava",
              "damage_per_tick": 4
            }
          ]
        }
      }
    ],
    "/vanilla/behavior_pack/entities/trader_llama.json": [
      {
        "path": "/minecraft:entity/components/minecraft:hurt_on_condition/",
        "content": {
          "damage_conditions": [
            {
              "filters": {
                "test": "in_lava",
                "subject": "self",
                "operator": "==",
                "value": true
              },
              "cause": "lava",
              "damage_per_tick": 4
            }
          ]
        }
      }
    ],
    "/vanilla/behavior_pack/entities/tripod_camera.json": [
      {
        "path": "/minecraft:entity/components/minecraft:hurt_on_condition/",
        "content": {
          "damage_conditions": [
            {
              "filters": {
                "test": "in_lava",
                "subject": "self",
                "operator": "==",
                "value": true
              },
              "cause": "lava",
              "damage_per_tick": 4
            }
          ]
        }
      }
    ],
    "/vanilla/behavior_pack/entities/tropicalfish.json": [
      {
        "path": "/minecraft:entity/components/minecraft:hurt_on_condition/",
        "content": {
          "damage_conditions": [
            {
              "filters": {
                "test": "in_lava",
                "subject": "self",
                "operator": "==",
                "value": true
              },
              "cause": "lava",
              "damage_per_tick": 4
            }
          ]
        }
      }
    ],
    "/vanilla/behavior_pack/entities/turtle.json": [
      {
        "path": "/minecraft:entity/components/minecraft:hurt_on_condition/",
        "content": {
          "damage_conditions": [
            {
              "filters": {
                "test": "in_lava",
                "subject": "self",
                "operator": "==",
                "value": true
              },
              "cause": "lava",
              "damage_per_tick": 4
            }
          ]
        }
      }
    ],
    "/vanilla/behavior_pack/entities/villager_v2.json": [
      {
        "path": "/minecraft:entity/components/minecraft:hurt_on_condition/",
        "content": {
          "damage_conditions": [
            {
              "filters": {
                "test": "in_lava",
                "subject": "self",
                "operator": "==",
                "value": true
              },
              "cause": "lava",
              "damage_per_tick": 4
            }
          ]
        }
      }
    ],
    "/vanilla/behavior_pack/entities/villager.json": [
      {
        "path": "/minecraft:entity/components/minecraft:hurt_on_condition/",
        "content": {
          "damage_conditions": [
            {
              "filters": {
                "test": "in_lava",
                "subject": "self",
                "operator": "==",
                "value": true
              },
              "cause": "lava",
              "damage_per_tick": 4
            }
          ]
        }
      }
    ],
    "/vanilla/behavior_pack/entities/vindicator.json": [
      {
        "path": "/minecraft:entity/components/minecraft:hurt_on_condition/",
        "content": {
          "damage_conditions": [
            {
              "filters": {
                "test": "in_lava",
                "subject": "self",
                "operator": "==",
                "value": true
              },
              "cause": "lava",
              "damage_per_tick": 4
            }
          ]
        }
      }
    ],
    "/vanilla/behavior_pack/entities/wandering_trader.json": [
      {
        "path": "/minecraft:entity/components/minecraft:hurt_on_condition/",
        "content": {
          "damage_conditions": [
            {
              "filters": {
                "test": "in_lava",
                "subject": "self",
                "operator": "==",
                "value": true
              },
              "cause": "lava",
              "damage_per_tick": 4
            }
          ]
        }
      }
    ],
    "/vanilla/behavior_pack/entities/witch.json": [
      {
        "path": "/minecraft:entity/components/minecraft:hurt_on_condition/",
        "content": {
          "damage_conditions": [
            {
              "filters": {
                "test": "in_lava",
                "subject": "self",
                "operator": "==",
                "value": true
              },
              "cause": "lava",
              "damage_per_tick": 4
            }
          ]
        }
      }
    ],
    "/vanilla/behavior_pack/entities/wolf.json": [
      {
        "path": "/minecraft:entity/components/minecraft:hurt_on_condition/",
        "content": {
          "damage_conditions": [
            {
              "filters": {
                "test": "in_lava",
                "subject": "self",
                "operator": "==",
                "value": true
              },
              "cause": "lava",
              "damage_per_tick": 4
            }
          ]
        }
      }
    ],
    "/vanilla/behavior_pack/entities/zombie_horse.json": [
      {
        "path": "/minecraft:entity/components/minecraft:hurt_on_condition/",
        "content": {
          "damage_conditions": [
            {
              "filters": {
                "test": "in_lava",
                "subject": "self",
                "operator": "==",
                "value": true
              },
              "cause": "lava",
              "damage_per_tick": 4
            }
          ]
        }
      }
    ],
    "/vanilla/behavior_pack/entities/zombie_villager_v2.json": [
      {
        "path": "/minecraft:entity/components/minecraft:hurt_on_condition/",
        "content": {
          "damage_conditions": [
            {
              "filters": {
                "test": "in_lava",
                "subject": "self",
                "operator": "==",
                "value": true
              },
              "cause": "lava",
              "damage_per_tick": 4
            }
          ]
        }
      }
    ],
    "/vanilla/behavior_pack/entities/zombie_villager.json": [
      {
        "path": "/minecraft:entity/components/minecraft:hurt_on_condition/",
        "content": {
          "damage_conditions": [
            {
              "filters": {
                "test": "in_lava",
                "subject": "self",
                "operator": "==",
                "value": true
              },
              "cause": "lava",
              "damage_per_tick": 4
            }
          ]
        }
      }
    ],
    "/vanilla/behavior_pack/entities/zombie.json": [
      {
        "path": "/minecraft:entity/components/minecraft:hurt_on_condition/",
        "content": {
          "damage_conditions": [
            {
              "filters": {
                "test": "in_lava",
                "subject": "self",
                "operator": "==",
                "value": true
              },
              "cause": "lava",
              "damage_per_tick": 4
            }
          ]
        }
      }
    ],
    "/samples/addon_starter/1_hello_world/behavior_packs/aop_mobs/entities/sheepomelon.behavior.json": [
      {
        "path": "/minecraft:entity/components/minecraft:hurt_on_condition/",
        "content": {
          "damage_conditions": [
            {
              "filters": {
                "test": "in_lava",
                "subject": "self",
                "operator": "==",
                "value": true
              },
              "cause": "lava",
              "damage_per_tick": 4
            }
          ]
        }
      }
    ],
    "/samples/addon_starter/2_entities/behavior_packs/aop_mobs/entities/biceson.behavior.json": [
      {
        "path": "/minecraft:entity/components/minecraft:hurt_on_condition/",
        "content": {
          "damage_conditions": [
            {
              "filters": {
                "test": "in_lava",
                "subject": "self",
                "operator": "==",
                "value": true
              },
              "cause": "lava",
              "damage_per_tick": 4
            }
          ]
        }
      }
    ],
    "/samples/addon_starter/2_entities/behavior_packs/aop_mobs/entities/frost_moose.behavior.json": [
      {
        "path": "/minecraft:entity/components/minecraft:hurt_on_condition/",
        "content": {
          "damage_conditions": [
            {
              "filters": {
                "test": "in_lava",
                "subject": "self",
                "operator": "==",
                "value": true
              },
              "cause": "lava",
              "damage_per_tick": 4
            }
          ]
        }
      }
    ],
    "/samples/addon_starter/2_entities/behavior_packs/aop_mobs/entities/nardolphle.behavior.json": [
      {
        "path": "/minecraft:entity/components/minecraft:hurt_on_condition/",
        "content": {
          "damage_conditions": [
            {
              "filters": {
                "test": "in_lava",
                "subject": "self",
                "operator": "==",
                "value": true
              },
              "cause": "lava",
              "damage_per_tick": 4
            }
          ]
        }
      }
    ],
    "/samples/addon_starter/2_entities/behavior_packs/aop_mobs/entities/sheepomelon.behavior.json": [
      {
        "path": "/minecraft:entity/components/minecraft:hurt_on_condition/",
        "content": {
          "damage_conditions": [
            {
              "filters": {
                "test": "in_lava",
                "subject": "self",
                "operator": "==",
                "value": true
              },
              "cause": "lava",
              "damage_per_tick": 4
            }
          ]
        }
      }
    ],
    "/samples/addon_starter/complete/behavior_packs/aop_mobs/entities/biceson.behavior.json": [
      {
        "path": "/minecraft:entity/components/minecraft:hurt_on_condition/",
        "content": {
          "damage_conditions": [
            {
              "filters": {
                "test": "in_lava",
                "subject": "self",
                "operator": "==",
                "value": true
              },
              "cause": "lava",
              "damage_per_tick": 4
            }
          ]
        }
      }
    ],
    "/samples/addon_starter/complete/behavior_packs/aop_mobs/entities/frost_moose.behavior.json": [
      {
        "path": "/minecraft:entity/components/minecraft:hurt_on_condition/",
        "content": {
          "damage_conditions": [
            {
              "filters": {
                "test": "in_lava",
                "subject": "self",
                "operator": "==",
                "value": true
              },
              "cause": "lava",
              "damage_per_tick": 4
            }
          ]
        }
      }
    ],
    "/samples/addon_starter/complete/behavior_packs/aop_mobs/entities/nardolphle.behavior.json": [
      {
        "path": "/minecraft:entity/components/minecraft:hurt_on_condition/",
        "content": {
          "damage_conditions": [
            {
              "filters": {
                "test": "in_lava",
                "subject": "self",
                "operator": "==",
                "value": true
              },
              "cause": "lava",
              "damage_per_tick": 4
            }
          ]
        }
      }
    ],
    "/samples/addon_starter/complete/behavior_packs/aop_mobs/entities/sheepomelon.behavior.json": [
      {
        "path": "/minecraft:entity/components/minecraft:hurt_on_condition/",
        "content": {
          "damage_conditions": [
            {
              "filters": {
                "test": "in_lava",
                "subject": "self",
                "operator": "==",
                "value": true
              },
              "cause": "lava",
              "damage_per_tick": 4
            }
          ]
        }
      }
    ],
    "/samples/behavior_pack_sample/entities/cow.json": [
      {
        "path": "/minecraft:entity/components/minecraft:hurt_on_condition/",
        "content": {
          "damage_conditions": [
            {
              "filters": {
                "test": "in_lava",
                "subject": "self",
                "operator": "==",
                "value": true
              },
              "cause": "lava",
              "damage_per_tick": 4
            }
          ]
        }
      }
    ],
    "/samples/casual_creator/chill_dreams/1_dream_turkey/behavior_packs/mamm_cds/entities/dream_turkey.json": [
      {
        "path": "/minecraft:entity/components/minecraft:hurt_on_condition/",
        "content": {
          "damage_conditions": [
            {
              "filters": {
                "test": "in_lava",
                "subject": "self",
                "operator": "==",
                "value": true
              },
              "cause": "lava",
              "damage_per_tick": 4
            }
          ]
        }
      }
    ],
    "/samples/casual_creator/chill_dreams/2_dreams_come_true/behavior_packs/mamm_cds/entities/dream_turkey.json": [
      {
        "path": "/minecraft:entity/components/minecraft:hurt_on_condition/",
        "content": {
          "damage_conditions": [
            {
              "filters": {
                "test": "in_lava",
                "subject": "self",
                "operator": "==",
                "value": true
              },
              "cause": "lava",
              "damage_per_tick": 4
            }
          ]
        }
      }
    ],
    "/samples/casual_creator/chill_dreams/complete/behavior_packs/mamm_cds/entities/dream_turkey.json": [
      {
        "path": "/minecraft:entity/components/minecraft:hurt_on_condition/",
        "content": {
          "damage_conditions": [
            {
              "filters": {
                "test": "in_lava",
                "subject": "self",
                "operator": "==",
                "value": true
              },
              "cause": "lava",
              "damage_per_tick": 4
            }
          ]
        }
      }
    ],
    "/samples/casual_creator/chill_dreams/complete/behavior_packs/mamm_cds/entities/memory_jar.json": [
      {
        "path": "/minecraft:entity/components/minecraft:hurt_on_condition/",
        "content": {
          "damage_conditions": [
            {
              "filters": {
                "test": "in_lava",
                "subject": "self",
                "operator": "==",
                "value": true
              },
              "cause": "lava",
              "damage_per_tick": 4
            }
          ]
        }
      }
    ],
    "/samples/casual_creator/custom_cat_eliza/behavior_packs/mike_eliz/entities/eliza.json": [
      {
        "path": "/minecraft:entity/components/minecraft:hurt_on_condition/",
        "content": {
          "damage_conditions": [
            {
              "filters": {
                "test": "in_lava",
                "subject": "self",
                "operator": "==",
                "value": true
              },
              "cause": "lava",
              "damage_per_tick": 4
            }
          ]
        }
      }
    ],
    "/samples/casual_creator/gray_wave/behavior_packs/mikeamm_gwve/entities/axe_turret.behavior.json": [
      {
        "path": "/minecraft:entity/components/minecraft:hurt_on_condition/",
        "content": {
          "damage_conditions": [
            {
              "filters": {
                "test": "in_lava",
                "subject": "self",
                "operator": "==",
                "value": true
              },
              "cause": "lava",
              "damage_per_tick": 4
            }
          ]
        }
      }
    ],
    "/samples/casual_creator/gray_wave/behavior_packs/mikeamm_gwve/entities/bow_turret.behavior.json": [
      {
        "path": "/minecraft:entity/components/minecraft:hurt_on_condition/",
        "content": {
          "damage_conditions": [
            {
              "filters": {
                "test": "in_lava",
                "subject": "self",
                "operator": "==",
                "value": true
              },
              "cause": "lava",
              "damage_per_tick": 4
            }
          ]
        }
      }
    ],
    "/samples/casual_creator/gray_wave/behavior_packs/mikeamm_gwve/entities/crossbow_turret.behavior.json": [
      {
        "path": "/minecraft:entity/components/minecraft:hurt_on_condition/",
        "content": {
          "damage_conditions": [
            {
              "filters": {
                "test": "in_lava",
                "subject": "self",
                "operator": "==",
                "value": true
              },
              "cause": "lava",
              "damage_per_tick": 4
            }
          ]
        }
      }
    ],
    "/samples/casual_creator/gray_wave/behavior_packs/mikeamm_gwve/entities/gray_wave_generator.json": [
      {
        "path": "/minecraft:entity/components/minecraft:hurt_on_condition/",
        "content": {
          "damage_conditions": [
            {
              "filters": {
                "test": "in_lava",
                "subject": "self",
                "operator": "==",
                "value": true
              },
              "cause": "lava",
              "damage_per_tick": 4
            }
          ]
        }
      }
    ],
    "/samples/casual_creator/gray_wave/behavior_packs/mikeamm_gwve/entities/gray_wave.json": [
      {
        "path": "/minecraft:entity/components/minecraft:hurt_on_condition/",
        "content": {
          "damage_conditions": [
            {
              "filters": {
                "test": "in_lava",
                "subject": "self",
                "operator": "==",
                "value": true
              },
              "cause": "lava",
              "damage_per_tick": 4
            }
          ]
        }
      }
    ],
    "/samples/casual_creator/gray_wave/behavior_packs/mikeamm_gwve/entities/gray_zombie_leader.behavior.json": [
      {
        "path": "/minecraft:entity/components/minecraft:hurt_on_condition/",
        "content": {
          "damage_conditions": [
            {
              "filters": {
                "test": "in_lava",
                "subject": "self",
                "operator": "==",
                "value": true
              },
              "cause": "lava",
              "damage_per_tick": 4
            }
          ]
        }
      }
    ],
    "/samples/casual_creator/gray_wave/behavior_packs/mikeamm_gwve/entities/shbullet_turret.behavior.json": [
      {
        "path": "/minecraft:entity/components/minecraft:hurt_on_condition/",
        "content": {
          "damage_conditions": [
            {
              "filters": {
                "test": "in_lava",
                "subject": "self",
                "operator": "==",
                "value": true
              },
              "cause": "lava",
              "damage_per_tick": 4
            }
          ]
        }
      }
    ],
    "/samples/casual_creator/gray_wave/behavior_packs/mikeamm_gwve/entities/smfireball_turret.behavior.json": [
      {
        "path": "/minecraft:entity/components/minecraft:hurt_on_condition/",
        "content": {
          "damage_conditions": [
            {
              "filters": {
                "test": "in_lava",
                "subject": "self",
                "operator": "==",
                "value": true
              },
              "cause": "lava",
              "damage_per_tick": 4
            }
          ]
        }
      }
    ]
  },
  "id": "minecraft:hurt_on_condition"
}