
Originally Posted by
sydok
Do you mind posting the base INT for the BLM you assumed? Additionally, did you include the 3 MAB from Morrigan+1 set bonus? I only checked Stone 3, but for my math to match yours it looks like 104 base INT and no set bonus.
Edit: checking other values, it doesn't seem to match.
Yes set bonus, 114 int (taru blm/sch + 12/12 merits)
Didn't worry about any flooring since it's just approximate.
Code:
v = [200 230 260 290 320 350 400 440 480 520 560 600 650 700 750 800 850 900];
v100 = [550 560 570 580 590 600 850 865 880 895 910 925 1200 1220 1240 1260 1280 1300];
m = (v100-v)/100;
sets = [170,117,0.35;
202,90,0.35;
170,217,0;
202,190,0];
tINT = 80;
for i=1:4
for j=1:18
dmg(j,i) = ((sets(i,1)-tINT)*m(j)+v(j))*((sets(i,2)+100)/100)*(1+sets(i,3));
end
end
Sets are just summed from base+stats, also remember I'm doing this as BLM so the base mab is different than sch.
Sets are (int, mab, affinitybonus)