summaryrefslogtreecommitdiff
path: root/wiki/wikigen.py
diff options
context:
space:
mode:
authorJesusaves <cpntb1@ymail.com>2018-03-27 21:34:41 -0300
committerJesusaves <cpntb1@ymail.com>2018-03-27 21:34:41 -0300
commit4c624a2084973f9b9be3dab0fec6be014490ba72 (patch)
treeb87d483ac964b2e2b7ec3da06ad46e0eb7354de1 /wiki/wikigen.py
parent09d96aad9d77325560204132aeeafb0cfc2a7248 (diff)
downloadtools-4c624a2084973f9b9be3dab0fec6be014490ba72.tar.gz
tools-4c624a2084973f9b9be3dab0fec6be014490ba72.tar.bz2
tools-4c624a2084973f9b9be3dab0fec6be014490ba72.tar.xz
tools-4c624a2084973f9b9be3dab0fec6be014490ba72.zip
item db is now using tabs
Diffstat (limited to 'wiki/wikigen.py')
-rwxr-xr-xwiki/wikigen.py24
1 files changed, 12 insertions, 12 deletions
diff --git a/wiki/wikigen.py b/wiki/wikigen.py
index 86c0861..7edc2f3 100755
--- a/wiki/wikigen.py
+++ b/wiki/wikigen.py
@@ -351,29 +351,29 @@ def newItemDB():
x=It()
# sti() block
- if " Id:" in a:
+ if " Id:" in a:
x.id=sti(a)
- elif " AegisName:" in a:
+ elif " AegisName:" in a:
x.aegis=sti(a)
- elif " Name:" in a:
+ elif " Name:" in a:
x.name=stin(a)
- elif " Sell:" in a:
+ elif " Sell:" in a:
x.price=sti(a)
- elif " Weight:" in a:
+ elif " Weight:" in a:
x.weight=sti(a)
- elif " Type:" in a:
+ elif " Type:" in a:
x.type=sti(a)
- elif " Loc:" in a:
+ elif " Loc:" in a:
x.loc=sti(a)
- elif " Atk:" in a:
+ elif " Atk:" in a:
x.atk=sti(a)
- elif " Matk:" in a:
+ elif " Matk:" in a:
x.matk=sti(a)
- elif " Range:" in a:
+ elif " Range:" in a:
x.range=sti(a)
- elif " Def:" in a:
+ elif " Def:" in a:
x.defs=sti(a)
- elif " EquipLv:" in a:
+ elif " EquipLv:" in a:
x.lvl=sti(a)
# Write booleans
elif "DropAnnounce: true" in a: