summaryrefslogtreecommitdiff
path: root/exptable.py
blob: f0a8e385897d0a975763d14813221754d7052bad (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
#!/usr/bin/python
# This script file is meant to create EXP table
# It have some randomness (see the import)
# It starts at level 60 (and i is the according xp)
# It stops at level 999, or when MAX_INT is reached.
import random
i=365914
l=60
o=open("expgroup.db", "w")

mx=1000
b=False

while (l < mx):
    l+=1
    if (l < 90):
        i=int(i*1.1)+random.randint(-2,12)
    elif (l < 120):
        i=int(i*1.05)+random.randint(-2,12)
    elif (l < 150):
        i=int(i*1.02)+random.randint(-2,12)
    elif (l < 270):
        i=int(i*1.01)+random.randint(-2,12)
    elif (l < 450):
        i=int(i*1.006)+random.randint(-2,12)
    elif (l < 650):
        i=int(i*1.004)+random.randint(-2,12)
    else:
        i=int(i*1.002)+random.randint(-2,12)

    if (i >= pow(2,31)):
        if not b:
            print("Interruption at level %d: max int reached" % l)
            b=True
        i=pow(2,31)-1000+l
    o.write('%d,' % i)
    if l % 10 == 0:
        o.write('\n')

o.close()