You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
package tuning
|
|
|
|
import "math"
|
|
|
|
func GetMultiplierByStrength(str int) float64 {
|
|
return 1.1 - 0.002 * math.Log(float64(str))
|
|
}
|