stamina is disabled if you have all 14 levels of at least one.
git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@5161 c06c8d41-db1a-0410-9941-cceddc491573
FGFWHE6BFX4EKW2XO2SGYJSML2PCNYTBWHVS3J3BXOMXFPO5PKRQC
&& (player_mutation_level(MUT_STRONG) / 5) < (3 - estep)
&& (player_mutation_level(MUT_CLEVER) / 5) < (3 - estep)
&& (player_mutation_level(MUT_AGILE) / 5) < (3 - estep))
&& (player_mutation_level(MUT_STRONG) / 5 + 1) < (3 - estep)
&& (player_mutation_level(MUT_CLEVER) / 5 + 1) < (3 - estep)
&& (player_mutation_level(MUT_AGILE) / 5 + 1) < (3 - estep))
((player_mutation_level(MUT_STRONG) / 5) < (2 - estep)
&& (player_mutation_level(MUT_CLEVER) / 5) < (2 - estep)
&& (player_mutation_level(MUT_AGILE) / 5) < (2 - estep))
((player_mutation_level(MUT_STRONG) / 5 + 1) < (2 - estep)
&& (player_mutation_level(MUT_CLEVER) / 5 + 1) < (2 - estep)
&& (player_mutation_level(MUT_AGILE) / 5 + 1) < (2 - estep))
|| ((player_mutation_level(MUT_STRONG) / 5) < (3 - estep)
&& (player_mutation_level(MUT_CLEVER) / 5) < (3 - estep)
&& (player_mutation_level(MUT_AGILE) / 5) < (3 - estep));
|| ((player_mutation_level(MUT_STRONG) / 5 + 1) < (3 - estep)
&& (player_mutation_level(MUT_CLEVER) / 5 + 1) < (3 - estep)
&& (player_mutation_level(MUT_AGILE) / 5 + 1) < (3 - estep));