diff options
author | Florian Jung <flo@windfisch.org> | 2015-08-26 22:51:02 +0200 |
---|---|---|
committer | Florian Jung <flo@windfisch.org> | 2015-08-26 22:51:02 +0200 |
commit | b1492078b6b23d2ead2aeddeca3fd0f4f69df0ef (patch) | |
tree | d358bc65edb5b4e2ce6da1f5d7ca1800a655a203 | |
parent | 739c6c05fdbd980688b847ac778564a32dbd5d8a (diff) |
mechanics.py contains the reverse-engineered formulas for the game mechanics
-rw-r--r-- | mechanics.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/mechanics.py b/mechanics.py new file mode 100644 index 0000000..d242493 --- /dev/null +++ b/mechanics.py @@ -0,0 +1,3 @@ +def speed(size): + return 86 / (size**0.45) + |