打开主菜单

少前百科GFwiki β

Widget:融合势力属性

罗瓦讨论 | 贡献2022年5月1日 (日) 12:26的版本

const type_coef = [

   [4.79, 3.67, 0.46, 0.55, 0.75, 0.18],
   [3.84, 2.94, 0.42, 0.44, 0.60, 0.15],
   [3.60, 2.76, 0.42, 0.42, 0.57, 0.14]];

const size_coef = [100, 102, 105, 108, 110]; const rank_coef = [80, 90, 100, 110, 120]; let div, type, ratios, grow; let maxform = 5; let resolution = new Array(5);

function calc(attr, lv, rank, size, resolve, form) {

   let ratio = ratios[attr]
   let base = type_coef[type][attr] * ratio * 8 * grow *
       size_coef[size] * rank_coef[rank] * form / 1e8;
   let accretion = type_coef[type][attr] * ratio * (lv - 1) * grow *
       size_coef[size] * rank_coef[rank] * form / 5e8;
   if (base - Math.floor(base) < 1e-3) {
       base = Math.floor(base);
   }
   return Math.ceil(base) + Math.floor(accretion) + form * unitdata.resolution[resolve][attr];

}

function main() {

   div = document.getElementById('attrs');
   let unitid = div.dataset.id;
   if (unitid < 2000 || unitid == 2006 || unitid == 3010) maxform = 1;
   type = div.dataset.type;
   ratios = div.dataset.attrs.split(',').map(x => +x);
   grow = div.dataset.grow;
   let r2d = div.dataset.resolution.split(';');
   for (let i = 0; i < 5; i++) {
       rs = r2d[i].split(',');
       resolution[i] = new Array(6);
       for (let j = 0; j < 6; j++) resolution[i][j] = +rs[j];
   }
   for (let i = 6; --i;)
       document.getElementById('attr-td-' + i).textContent = calc(i, 100, 4, 0, 4, maxform);

}

window.onload = main;