forked from PathOfBuildingCommunity/PathOfBuilding
-
Notifications
You must be signed in to change notification settings - Fork 2
/
GameVersions.lua
48 lines (47 loc) · 1.14 KB
/
GameVersions.lua
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
defaultTargetVersion = "2_6"
liveTargetVersion = "3_0"
targetVersionList = { "2_6", "3_0" }
targetVersions = {
["2_6"] = {
short = "2.6",
long = "2.6 (Atlas of Worlds)",
treeVersionList = { "2_6" },
defaultTreeVersion = "2_6",
latestTreeVersion = "2_6",
},
["3_0"] = {
short = "3.9",
long = "3.9 (Conquerors of the Atlas)",
treeVersionList = { "3_6", "3_7", "3_8", "3_9" },
defaultTreeVersion = "3_6",
latestTreeVersion = "3_9",
},
}
treeVersionList = { "2_6", "3_6", "3_7", "3_8", "3_9" }
treeVersions = {
["2_6"] = {
short = "2.6",
export = "https://www.pathofexile.com/passive-skill-tree/2.6.2/",
targetVersion = "2_6",
},
["3_6"] = {
short = "3.6",
export = "https://www.pathofexile.com/passive-skill-tree/3.6.0/",
targetVersion = "3_0",
},
["3_7"] = {
short = "3.7",
export = "https://www.pathofexile.com/passive-skill-tree/3.7.0/",
targetVersion = "3_0",
},
["3_8"] = {
short = "3.8",
export = "https://www.pathofexile.com/passive-skill-tree/3.8.0/",
targetVersion = "3_0",
},
["3_9"] = {
short = "3.9",
export = "https://www.pathofexile.com/passive-skill-tree/3.9.0/",
targetVersion = "3_0",
},
}