initial commit

This commit is contained in:
deadvey
2026-03-29 19:53:07 +01:00
commit ce6da0d106
17 changed files with 388 additions and 0 deletions

4
maths.py Normal file
View File

@@ -0,0 +1,4 @@
import random
# Random number generator that's biased towards 0
def biased_random(max_value, strength=3):
return round((random.random() ** strength) * max_value)