{
  "format_version": "1.10.0",
  "animation_controllers": {
    "controller.animation.nautilus.general": {
      "initial_state": "swimming",
      "states": {
        "swimming": {
          "animations": [
            { "breathe": "math.min(1.0, math.lerp(0.75, 1.5, query.modified_move_speed))" },
            { "swim": "query.has_rider ? 0.0 : math.min(1.0, math.lerp(0.0, 6.0, query.modified_move_speed))" },
            "look_at_target"
          ],
          "particle_effects": [
            {
              "effect": "bubbles",
              "locator": "bubble_particle_emitter"
            }
          ]
        }
      }
    },
    "controller.animation.nautilus.sound": {
      "initial_state": "default",
      "states": {
        "default": {
          "transitions": [
            {
              "dashing": "query.has_dash_cooldown"
            }
          ]
        },
        "dashing": {
          "animations": [ "dashing" ],
          "transitions": [
            {
              "default": "!query.has_dash_cooldown"
            }
          ]
        }
      }
    }
  }
}
