it is quite easy, just use the formula that has been provided to you multiple times:
Code
base damage * (1 + (int - 5) / 100) * ( 1 + (ee + prof + mastery) / 100)
base damage of wild heal lvl45 is: 12-120
Case 1 with 76 int, 107%ee, 1% prof:
Code
12 * (1 + (76 - 5) / 100) * ( 1 + (107 + 1 + 0) / 100) = 12 * 1.71 * 2.08 = ~42.6
120 * (1 + (76 - 5) / 100) * ( 1 + (107 + 1 + 0) / 100) = 120 * 1.71 * 2.08 = ~426.8
Case 2 with 133 int, 107% ee, 1% prof and
-25% penaltyCode
12 * (1 + (133 - 5) / 100) * ( 1 + (107 + 1 + 0) / 100) * 0.75 = 12 * 2.28 * 2.08 * 0.75= ~42.6
120 * (1 + (133 - 5) / 100) * ( 1 + (107 + 1 + 0) / 100) * 0.75= 120 * 2.28 * 2.08 * 0.75 = ~426.8
so you are dead even
This post was edited by Meridius on Feb 22 2019 11:29am