-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathdefaultData.lua
More file actions
38 lines (38 loc) · 1.19 KB
/
defaultData.lua
File metadata and controls
38 lines (38 loc) · 1.19 KB
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
return {
currentWeather = {
["ascadian isles region"] = 0,
["ashlands region"] = 0,
["azura's coast region"] = 0,
["bitter coast region"] = 0,
["brodir grove region"] = 0,
["felsaad coast region"] = 0,
["grazelands region"] = 0,
["hirstaang forest region"] = 0,
["isinfier plains region"] = 0,
["moesring mountains region"] = 0,
["molag mar region"] = 0,
["mournhold region"] = 0,
["red mountain region"] = 0,
["sheogorad"] = 0,
["thirsk region"] = 0,
["west gash region"] = 0
},
nextWeather = {
["ascadian isles region"] = 0,
["ashlands region"] = 0,
["azura's coast region"] = 0,
["bitter coast region"] = 0,
["brodir grove region"] = 0,
["felsaad coast region"] = 0,
["grazelands region"] = 0,
["hirstaang forest region"] = 0,
["isinfier plains region"] = 0,
["moesring mountains region"] = 0,
["molag mar region"] = 0,
["mournhold region"] = 0,
["red mountain region"] = 0,
["sheogorad"] = 0,
["thirsk region"] = 0,
["west gash region"] = 0
}
}