Is there any mathematical formula to calculate the minimum value from the below presumption?
0
$begingroup$
I am trying to balance a board game, where monsters activated based on a given rule, and I am looking for a formula, which takes in account the attacks of the heroes (2-4 heroes [noh], each with a single attack that has a unique attack value [av], and penetration [ap]), and the number of the monsters (1-9 different monsters, each with different health [mh], armor [ma], current enrage value [mce], and max enrage value [mme]), and wants to find the minimum number of activations [na]. The rule set looks something like this: in turn, each hero makes an attack against a single monster (any one monster). For each attack a hero makes, the monsters health is reduced in the following way: mh = max(0, mh - max(0, (av - max(0, ma-ap)))) After the attack, the monsters current enrage value gets subtracted b...