(in game/modules/tome/class/interface/TooltipsData.lua:98)Each time you kill a creature you gain 30% of your Willpower + 1 as Vim. This value is multiplied by half the rank of the creature.
However, in game/modules/tome/class/Actor.lua:3405, the code says:
Code: Select all
src:incVim((src:getWil() * 0.5 + 1) * self.rank)
What's more, the vim gain of Bleak Outcome still use old formula
Code: Select all
eff.src:incVim((1 + eff.src:getWil() / 10) * eff.stacks)
Though if we use the new formula, its vim gain will be very high.
Related: viewtopic.php?f=42&t=51859The vim you get for killing the creature is increased by 100%% for every stack of Bleak Outcome.