Skip to content

Rune Tooltip Formatting

Sergey Sylvian edited this page Oct 5, 2016 · 4 revisions

Percent Increase

newValue = originalValue * (1 + (modifierValue / 100 * multiplier))

Type = '' or 'Percent' Method = '' or 'Multiply'

Reduction = 0

Percent Decrease

newValue = originalValue * (1 + (modifierValue / 100 * multiplier))

Type = '' or 'Percent' Method = '' or 'Multiply' Reduction = 1

Add Increase

newValue = originalValue + (modifierValue * multiplier)

Type = Int Method = Add

Add Substract

newValue = originalValue + (modifierValue * multiplier)

Type = Int Method = Add Reduction = 1

Add Increase (Float)

newValue = originalValue + ((modifierValue / 100) * multiplier)

Type = Float Method = Add

Add Substract (Float)

newValue = originalValue + ((modifierValue / 100) * multiplier)

Type = Float Method = Add Reduction = 1