This commit is contained in:
biglyderv 2025-03-05 01:10:20 -05:00
parent 659274b087
commit a455575a64
Signed by: biglyderv
GPG key ID: 0E2EB0B4CD7397B5
4 changed files with 11 additions and 8 deletions

7
docs/js/upgrade.js Normal file
View file

@ -0,0 +1,7 @@
document.querySelector('.buy').addEventListener('click', () => {
if (nothingness < 10) return;
nothingness -= 10;
cubePos.push([Math.random() * 1000 - 500, Math.random() * 1000 - 500, Math.random() * 30 - 200,
Math.random() * 2 - 1, Math.random() * 2 - 1, Math.random() * 2 - 1
])
})