From fb63481d2c5b7b468df6c5ebdee30178bc9155f5 Mon Sep 17 00:00:00 2001 From: Ninjune x Date: Thu, 17 Nov 2022 16:56:06 -0600 Subject: 1.6.0 Changelog in releases --- util/constants.js | 30 +++++++++++++++++++++++------- 1 file changed, 23 insertions(+), 7 deletions(-) (limited to 'util/constants.js') 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 -- cgit