aboutsummaryrefslogtreecommitdiff
path: root/util/constants.js
blob: 16cd037e83ebe35e9b73259f9f4cd4a7562d3ff5 (plain)
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
import PogObject from "PogData"

let PogData = new PogObject("Coleweight", {
    "api_key": "",
    "x": 0.5,
    "y": 141,
    "coleweight": 0,
    "first_time": true
}, "config/.cw_data.json")

let PowderData = new PogObject("Coleweight", {
    "chests": 0,
    "gemstonePowder": 0,
    "mithrilPowder": 0,
    "x": 0,
    "y": 0
}, "config/.powdertracker_data.json")

let TimerData = new PogObject("Coleweight", {
    "x": 0,
    "y": 0,
    "timer": 0
}, "config/.timer_data.json")

export default
{
    PREFIX: "&2[CW] ",
    VERSION: (JSON.parse(FileLib.read("Coleweight", "metadata.json"))).version,
    data: PogData,
    powderdata: PowderData,
    timerdata: TimerData,
    cwValues: [],
    calcCwPerHr: false,
    upTimeTrack: false,
    uptime: 0,
    baseColeweight: 0,
    stepsSinceLast: 0,
    throneValues: [],
    spiralValues: [],
    coleweightHr: 0,
    cwValuesSum: 0,
    beta: false,
    serverData: {}
}