
      "minecraft:shooter": {
        "power" : 0.75,
        "def": "minecraft:splash_potion",
        "aux_val" : 23,   // harming
        "sound" : "throw",
        "projectiles" : [
          {
            "def" : "minecraft:splash_potion",
            "aux_val" : 21, // healing
            "filters" : {
              "all_of" : [
                { "test": "is_raider", "subject": "other", "value": true },
                { "test": "actor_health", "subject": "other", "value": 4, "operator" : "<=" }
              ]
            },
            "lose_target" : true
          },
          {
            "def" : "minecraft:splash_potion",
            "aux_val" : 28, // regeneration
            "filters" : {
              "all_of" : [
                { "test": "is_raider", "subject": "other", "value": true }
              ]
            },
            "lose_target" : true
          },
          {
            "def" : "minecraft:splash_potion",
            "aux_val" : 17, // slowness
            "filters" : {
              "all_of" : [
                { "test" : "target_distance", "subject" : "self", "value" : 8.0, "operator" : ">="},
                {
                  "none_of":[
                    { "test": "has_mob_effect", "subject": "other", "value": "slowness" }
                  ]
                }
              ]
            }
          },
          {
            "def" : "minecraft:splash_potion",
            "aux_val" : 25, // poison
            "filters" : {
              "all_of" : [
                { "test" : "actor_health", "subject" : "other", "value" : 8, "operator" : ">="},
                {
                  "none_of": [
                    { "test": "has_mob_effect", "subject": "other", "value": "poison" }
                  ]
                }
              ]
            }
          },
          {
            "def" : "minecraft:splash_potion",
            "aux_val" : 34, // weakness
            "filters" : {
              "all_of" : [
                { "test" : "target_distance", "subject" : "self", "value" : 3, "operator" : "<="},
                {
                  "none_of":[
                    { "test": "has_mob_effect", "subject": "other", "value": "weakness" }
                  ]
                }
              ]
            },
            "chance" : 0.25
          }
        ],
        "magic" : true
      },