diff options
Diffstat (limited to 'util/constants.js')
-rw-r--r-- | util/constants.js | 28 |
1 files changed, 18 insertions, 10 deletions
diff --git a/util/constants.js b/util/constants.js index 51345fe..776f3f7 100644 --- a/util/constants.js +++ b/util/constants.js @@ -2,9 +2,10 @@ import PogObject from "PogData" let PogData = new PogObject("Coleweight", { "api_key": "", + "professional": 0, + "jungle_amulet": true, "x": 0.5, "y": 141, - "coleweight": 0, "first_time": true }, "config/.cw_data.json") @@ -27,24 +28,31 @@ let DowntimeData = new PogObject("Coleweight", { "y": 0 }, "config/.downtime_data.json") +let CollectionData = new PogObject("Coleweight", { + "x": 0, + "y": 0 +}, "config/.collection_data.json") + +let AbilityData = new PogObject("Coleweight", { + "x": 0, + "y": 0 +}, "config/.ability_data.json") + +const PREFIX = "&2[CW] " export default { - PREFIX: "&2[CW] ", + PREFIX: PREFIX, + CALCULATEERRORMESSAGE: `${PREFIX}&cInvalid arguments. '/cw calculate help' for more information.`, + INVALIDARGS: `${PREFIX}&cInvalid arguments. '/cw help' for more information.`, VERSION: (JSON.parse(FileLib.read("Coleweight", "metadata.json"))).version, data: PogData, powderdata: PowderData, timerdata: TimerData, downtimedata: DowntimeData, - cwValues: [], - calcCwPerHr: false, - upTimeTrack: false, - uptime: 0, - baseColeweight: 0, - stepsSinceLast: 0, + collectiondata: CollectionData, + abilitydata: AbilityData, throneValues: [], spiralValues: [], - coleweightHr: 0, - cwValuesSum: 0, beta: false, serverData: {} }
\ No newline at end of file |