summaryrefslogtreecommitdiff
path: root/item_show.py
blob: 1e14e773708f4821e73cb02d96c2166365365def (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
#!/usr/bin/python
#has to be executed in place, this folder


def make_items():
    items_file=open("../db/item_db.txt","r")
    lines=items_file.readlines()
    items_file.close();

    items=[]
    for line in lines:
        array=line.split(",")
        if len(array)>6 and not line.startswith("#") and not line.startswith("//"):
            id=array[0]
            name=array[1]
            mbonus=array[10]
            try:
                int(mbonus)
                items+=[(int(mbonus),name)]
            except:
                print line
    return items;

global_items=[]
global_items=make_items();

global_items.sort()
for item in global_items:
    print item