summaryrefslogtreecommitdiff
path: root/tools/item_show.py
diff options
context:
space:
mode:
Diffstat (limited to 'tools/item_show.py')
-rw-r--r--tools/item_show.py29
1 files changed, 0 insertions, 29 deletions
diff --git a/tools/item_show.py b/tools/item_show.py
deleted file mode 100644
index 1e14e773..00000000
--- a/tools/item_show.py
+++ /dev/null
@@ -1,29 +0,0 @@
-#!/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