aboutsummaryrefslogtreecommitdiff
path: root/util/constants.js
diff options
context:
space:
mode:
authorNinjune x <enderknight537@gmail.com>2022-11-17 16:56:06 -0600
committerNinjune x <enderknight537@gmail.com>2022-11-17 16:56:06 -0600
commitfb63481d2c5b7b468df6c5ebdee30178bc9155f5 (patch)
tree3ec467f8acb9594c7b5547426a3b640856dc7e37 /util/constants.js
parent9085ac77ce364572b14f132b64ead5cde2194607 (diff)
downloadcoleweight-fb63481d2c5b7b468df6c5ebdee30178bc9155f5.tar.gz
coleweight-fb63481d2c5b7b468df6c5ebdee30178bc9155f5.tar.bz2
coleweight-fb63481d2c5b7b468df6c5ebdee30178bc9155f5.zip
1.6.0 Changelog in releasesv1.6.1
Diffstat (limited to 'util/constants.js')
-rw-r--r--util/constants.js30
1 files changed, 23 insertions, 7 deletions
diff --git a/util/constants.js b/util/constants.js
index d7377fd..16cd037 100644
--- a/util/constants.js
+++ b/util/constants.js
@@ -1,20 +1,34 @@
import PogObject from "PogData"
let PogData = new PogObject("Coleweight", {
- "api_key": undefined,
+ "api_key": "",
"x": 0.5,
"y": 141,
"coleweight": 0,
- "cwToggle": true,
- "first_time": true,
- "api_key": undefined
-}, ".cw_data.json");
+ "first_time": true
+}, "config/.cw_data.json")
-export default
+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,
@@ -24,5 +38,7 @@ export default
throneValues: [],
spiralValues: [],
coleweightHr: 0,
- cwValuesSum: 0
+ cwValuesSum: 0,
+ beta: false,
+ serverData: {}
} \ No newline at end of file