Added Stragedy Shop

This commit is contained in:
raeleus 2024-11-03 07:28:18 -08:00
parent 7ae04124b7
commit 02b75bcbd6
4 changed files with 319 additions and 1 deletions

View file

@ -16,6 +16,10 @@ function getRandom(seed) {
return x - Math.floor(x)
}
function getRandomFromList(...choices) {
return choices[getRandomInteger(0, choices.length - 1)]
}
function shuffle(array, seed) {
let currentIndex = array.length
while (currentIndex != 0) {