diff options
Diffstat (limited to 'wiki')
-rwxr-xr-x | wiki/wikigen.py | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/wiki/wikigen.py b/wiki/wikigen.py index f4853c2..b81ef25 100755 --- a/wiki/wikigen.py +++ b/wiki/wikigen.py @@ -31,6 +31,7 @@ IT_ARMOR={ 'MISC': [], # FOR FAILURE 'EQP_HEAD_LOW':[], # PANTS '1024': [], # NECKLACES (should be EQP_COSTUME_HEAD_TOP instead of number) '2048': [], # RINGS (should be EQP_COSTUME_HEAD_MID instead of number) + 'EQP_MOUNT':[], # MOUNTS (ie. EQP_SHADOW_SHOES) 'EQP_HEAD_TOP':[], # HATS/HELMETS 'EQP_HAND_L': []} # SHIELDS @@ -370,6 +371,8 @@ def ItAlloc(it): IT_ARMOR['1024'].append(it) elif '2048' in it.loc: IT_ARMOR['2048'].append(it) + elif 'EQP_SHADOW_SHOES' in it.loc: + IT_ARMOR['EQP_MOUNT'].append(it) elif 'EQP_SHADOW_ACC_R' in it.loc: IT_ARMOR['EQP_ACC_R'].append(it) # Not really else: @@ -456,6 +459,7 @@ def writeItems(): + [Ammo](#ammo)\n\ + [Cards](#cards)\n\ + [Pet Eggs](#pet-eggs)\n\ ++ [Mounts](#mounts)\n\ + [Weapons](#weapons)\n\ + [1H Weapons](#1h-weapons)\n\ + [2H Weapons](#2h-weapons)\n\ @@ -503,6 +507,10 @@ def writeItems(): wikia.write("## Pet Eggs\n") ItemWrite(IT_PETEGG, ID=True, AEGIS=True, NAME=True, WEIGHT=True) + # Mount Items + wikia.write("## Mounts\n") + ItemWrite(IT_ARMOR['EQP_MOUNT'], ID=True, AEGIS=True, NAME=True, WEIGHT=True) + #################################################################### wikia.write("# Weapons\n") |