-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* begin changelog * small changelog update * changelog again * yea * Gen3 Wrap up Part 1 (#75) * archie kyogre * fully finish archie's kyogre * maxie groudon * add numel and camerupt * magma camerupt * aqua sharpedo * update changelog * update gitignore * new banners * new dungeon * add butler npc * aqua vs magma event base * Aqua and Magma raids (#77) * raid boss kyogre * raid boss groudon * gen 3 raids * Jirachi (#78) * star piece initial impl * finish star piece impl * improve typing * new move effect impl * base jirachi impl * improve mythic * basic mythic jirachi * command config * useTrainer hook * basic jirachi * improve jirachi embed * basic jirachi embed * jirachi wish buttons * implement 2 jirachi wishes * more helper scripts * wish cooldown counter * improve jirachi UI + pokemon select * selected pokemon display * finish jirachi impl i think * implement shiny chance increase * Tutorial improvements (#79) * add new tutorial stages * add tutorial images * Misc improvements for 1.2.0 (#80) * make party adding easier * update changelog * some new pokemon * final additional pokemon * add more pokemon emojis and shiny * finalize changelog
- Loading branch information
Showing
62 changed files
with
3,886 additions
and
357 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -112,4 +112,5 @@ ssh.txt | |
.DS_Store | ||
notes.md | ||
venv/ | ||
Heap.* | ||
tutorialStats.csv |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
/* eslint-disable no-console */ | ||
require("dotenv").config(); | ||
const { deleteDocuments } = require("../../../src/database/mongoHandler"); | ||
const { collectionNames } = require("../../../src/config/databaseConfig"); | ||
|
||
const clearRaids = async () => { | ||
const res = deleteDocuments(collectionNames.RAIDS, {}); | ||
return res; | ||
}; | ||
|
||
clearRaids() | ||
.then((res) => { | ||
console.log(res); | ||
}) | ||
.catch((error) => { | ||
console.log(error); | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
/* eslint-disable no-console */ | ||
require("dotenv").config(); | ||
const { updateDocuments } = require("../../../src/database/mongoHandler"); | ||
const { collectionNames } = require("../../../src/config/databaseConfig"); | ||
|
||
const tutorialUserId = "638163104236175427"; | ||
const userId = process.argv[2] || tutorialUserId; | ||
|
||
// reset the specified player's dailys | ||
|
||
const resetPlayerDaily = async () => { | ||
const res = await updateDocuments( | ||
collectionNames.USERS, | ||
{ | ||
userId, | ||
}, | ||
{ | ||
$set: { | ||
lastCorrected: 0, | ||
}, | ||
} | ||
); | ||
return res; | ||
}; | ||
|
||
resetPlayerDaily() | ||
.then((res) => { | ||
console.log(res); | ||
}) | ||
.catch((error) => { | ||
console.log(error); | ||
}); |
Oops, something went wrong.