2020-09-08 15:58:35 -04:00
|
|
|
package d2calculation
|
2020-01-26 00:39:13 -05:00
|
|
|
|
2020-07-08 09:16:56 -04:00
|
|
|
// CalcString is a type of string often used in datafiles to specify
|
2020-01-26 00:39:13 -05:00
|
|
|
// a value that is calculated dynamically based on the stats of the relevant
|
|
|
|
// source, for instance a missile might have a movement speed of lvl*2
|
2020-04-11 14:56:47 -04:00
|
|
|
type CalcString string
|
2020-01-26 00:39:13 -05:00
|
|
|
|
2020-08-05 00:03:33 -04:00
|
|
|
// Issue #689
|
|
|
|
// info about calcstrings can be found here: https://d2mods.info/forum/kb/viewarticle?a=371
|