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, 29 insertions, 0 deletions
diff --git a/tools/item_show.py b/tools/item_show.py
new file mode 100644
index 00000000..1e14e773
--- /dev/null
+++ b/tools/item_show.py
@@ -0,0 +1,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