tsitu / MH-Tools

Assortment of MouseHunt utilities
https://tsitu.github.io/MH-Tools/
Apache License 2.0
30 stars 35 forks source link

Move GWH from "Events" to three locations #231

Closed hymccord closed 1 year ago

hymccord commented 1 year ago

Discussion in the discord thought it would be best to either make the "Event" have a sub-sub location (which isn't supported) or split Event->Great Winter Hunt into the three new locations on the map.

The simpler option was chosen to move the location out of Event.

Side note: A word of caution for anyone wanting to update the data. Since the mhct-db-docker has been updated to mysql 8.0, the "mysql" library that the "jacksmhtools-client" library uses no longer works. You need to use mysql2 until a PR can be submitted to fix the client library. In the mean time you can do this in this repo

Restore dependencies with npm i
Install mysql 2: npm i mysql2.
Go to ./node_modules/jacksmhtools-client/src/request.js
Change var mysql = require('mysql') to var mysql = require('mysql2').
Then you can run the pop scripts. DONT checkin the mysql2 changes in package.json.

hymccord commented 1 year ago

Sample Scores

Cinnamon Hill (New Location)
-, Brie, -
  Score: 6.61
  Sample Size: 396
  Mouse Count: 7

-, Gouda, -
  Score: 25.87
  Sample Size: 4235
  Mouse Count: 7

-, SB+, -
  Score: 15.43
  Sample Size: 1803
  Mouse Count: 7

-, Pecan Pecorino, -
  Score: 40.22
  Sample Size: 19319
  Mouse Count: 15

-, Glazed Pecan Pecorino, -
  Score: 18.11
  Sample Size: 5159
  Mouse Count: 16

Golem Workshop (New Location)
-, Gouda, -
  Score: 26.3
  Sample Size: 3506
  Mouse Count: 6

-, SB+, -
  Score: 15.38
  Sample Size: 1782
  Mouse Count: 7

-, Pecan Pecorino, -
  Score: 25.87
  Sample Size: 8898
  Mouse Count: 15

-, Glazed Pecan Pecorino, -
  Score: 16.79
  Sample Size: 4302
  Mouse Count: 16

Ice Fortress (New Location)
-, Gouda, -
  Score: 11.35
  Sample Size: 993
  Mouse Count: 7

-, SB+, -
  Score: 12.24
  Sample Size: 1117
  Mouse Count: 7

-, Pecan Pecorino, -
  Score: 15.36
  Sample Size: 3546
  Mouse Count: 15

-, Glazed Pecan Pecorino, -
  Score: 13.46
  Sample Size: 2913
  Mouse Count: 16

Boss, -, -
  Score: 100
  Sample Size: 1
  Mouse Count: 1
hymccord commented 1 year ago

Rebased due to conflicts.