(posting here because I've never seen it mentioned before)
Do you have several growth hormone rules? Say, one for girls, one for adult women, and one for cows?
They can be combined into one, if you enable: "Options → Game Options → Experimental → Rules Assistant target growth expressions"
Now you can include your slave's stats into the expression, instead of targeting a fixed number. For instance:
Code:
(slave.physicalAge > 24) ? 1000 : 500
This expression is a conditional (ternary) operator. It returns 1000 if your slave has the body of a person who's 25yo or older, 500 otherwise. As usual, the RA will administer hormones to your slave until the goal is achieved - except that the latter depends on the slave.
The general syntax is:
Code:
condition ? value_if_condition_is_true :value_if_condition_is_false
Conditional operators can be nested, like this:
Code:
condition_a ? a_is_true : (condition_b ? a_is_false_while_b_is_true : both_a_and_b_are_false)
The following expression sets the goal to 5000 if the slave is in the Diary, otherwise it's 1000 or 500 depending on her physical age.
Code:
slave.assignment === Job.MILKED ? 5000 : (slave.physicalAge > 24 ? 1000 : 500)
More about the RA in the Encyclopedia: "Table of Contents → Being in Charge → RA Condition Editor"