From e34e49d3064640e01305549413c862ee0a7a79aa Mon Sep 17 00:00:00 2001 From: Ben Longbons Date: Sat, 14 Dec 2013 10:32:08 -0800 Subject: Change tools/ to a submodule --- tools/item_show.py | 29 ----------------------------- 1 file changed, 29 deletions(-) delete mode 100644 tools/item_show.py (limited to 'tools/item_show.py') 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 -- cgit v1.2.3-60-g2f50