-
Notifications
You must be signed in to change notification settings - Fork 0
Open
Labels
typoAn incorrect text or typoAn incorrect text or typo
Description
Master of the Void description says x1.5 increase but is x0.5 increase
"increase" implies addition, so an increase of x1.5 is +150%. the correct word here would instead be "multiply"
The increase in both cases is 50%, with the difference that one of them is additive and the other is compounding. The change of notation from N% to xN is making it worse.
var countedStacks = (stacks > maxStacks) ? maxStacks : stacks;
var bonusMod = (1 + (0.5 * countedStacks)); // without this mastery
if (game.talents.voidMastery.purchased) bonusMod = Math.pow(1.5, countedStacks); // with this masteryIt could instead read: "Each Void Map in the stack multiplies the Helium gain from the stack by 150% rather than adding 50%."
It could also be left out entirely, or be replaced with an example.
Metadata
Metadata
Assignees
Labels
typoAn incorrect text or typoAn incorrect text or typo
