From e55e71c8c2ee5fc6541eed04e9b684c6167e8f07 Mon Sep 17 00:00:00 2001 From: Ninjune Date: Wed, 26 Oct 2022 22:45:52 -0500 Subject: 1.5.0 Release --- util/constants.js | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 util/constants.js (limited to 'util/constants.js') diff --git a/util/constants.js b/util/constants.js new file mode 100644 index 0000000..889ca14 --- /dev/null +++ b/util/constants.js @@ -0,0 +1,28 @@ +import PogObject from "PogData" + +let PogData = new PogObject("Coleweight", { + "api_key": undefined, + "x": 0.5, + "y": 141, + "coleweight": 0, + "cwToggle": true, + "first_time": true +}, ".cw_data.json"); + +export default +{ + PREFIX: "&2[CW] ", + VERSION: (JSON.parse(FileLib.read("Coleweight", "metadata.json"))).version, + data: PogData, + cwValues: [], + calcCwPerHr: false, + upTimeTrack: false, + uptime: 0, + baseColeweight: 0, + stepsSinceLast: 0, + cwGui: new Gui(), + throneValues: [], + spiralValues: [], + coleweightHr: 0, + cwValuesSum: 0 +} \ No newline at end of file -- cgit