/* Generic Herbivore Mate Behaviour // */ machine HerbMate { default state MateStart { action SetStandStill() transition { goto MateLoop } } state MateLoop { transition { goto MateLoop } } }