/* Generic Carnivore Defend Behaviour // */ machine CarnDefend { default state DefendStart { action SetAutoMovementBlend(true) action SetStandStill() transition { goto DefendLoop } } state DefendLoop { transition { goto DefendLoop } } }