技能训练室
Last updated
Last updated
const base = 25;
const failure = base;
const slot1 = base + Math.sqrt(catalystsOnSlot1);
...
const slotN = base + Math.sqrt(catalystsOnSlotN);
const total = failure + slot1 + ...slotN;
const chanceOfFailure = failure/total;
const chanceSlot1 = slot1/total;
...
const chanceSlotN = slotN/total;