2020-09-08 12:58:35 -07:00
|
|
|
package d2calculation
|
2020-01-26 00:39:13 -05:00
|
|
|
|
2020-07-08 16:16:56 +03: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 20:56:47 +02:00
|
|
|
type CalcString string
|
2020-01-26 00:39:13 -05:00
|
|
|
|
2020-08-04 21:03:33 -07:00
|
|
|
// Issue #689
|
|
|
|
// info about calcstrings can be found here: https://d2mods.info/forum/kb/viewarticle?a=371
|