diff options
-rwxr-xr-x | wiki/sedesign.py | 13 |
1 files changed, 9 insertions, 4 deletions
diff --git a/wiki/sedesign.py b/wiki/sedesign.py index 34cab5e..801e03b 100755 --- a/wiki/sedesign.py +++ b/wiki/sedesign.py @@ -455,7 +455,9 @@ def ArmorWrite(name,scope): showHeader() +wikia.write("<html><head>") wikia.write('<title>SeDesign</title><meta charset=utf8 />\n') +wikia.write("<body>") newItemDB() wikia.write('<hr/>') @@ -473,7 +475,7 @@ wikia.write(""" <td>CandorHeadBand</td> <td>CandorShirt</td> <td>CandorShorts</td> <td>CandorBoots, LousyMoccassins</td> <td>CandorGloves</td></tr> <tr><th>15</th> -<td>Dagger</td><td>?</td> +<td>MinerKnife, Dagger</td><td>?</td> <td>Bandana, SerfHat, <i>*AntlersHat</td> <td>CottonShirt, <i>*TneckSweater</td> <td>CottonShorts, MiniSkirt</td> <td>CottonBoots, <i>*Boots</td> <td>CottonGloves</td></tr> <tr><th>20</th> @@ -494,18 +496,18 @@ wikia.write(""" <tr><th>40</th> <td>RealBronzeGladius, ShortSword, MiereCleaver</td><td>BladeShield</td> -<td>Bucket, BurglarMask, SailorHat, <i>*ShroomHat</td> <td>DesertShirt</td> <td>CottonTrousers, <i>*RaidTrousers</td> <td>?</td> <td>LeatherGloves</td></tr> +<td>Bucket, BurglarMask, SailorHat, <i>*ShroomHat</td> <td>DesertShirt</td> <td>CottonTrousers, <i>*RaidTrousers, *CottonTrousers</td> <td>FurBoots</td> <td>LeatherGloves</td></tr> <tr><th>45</th> <td>Backsword</td><td>?</td> <td>ChefHat, <i>*YetiMask, *ForestShroomHat</td> <td><i>*Chainmail</td> <td><i>*BanditPants</td> <td>?</td> <td>?</td></tr> <tr><th>50</th> -<td>Broadsword, *ShortSword</td><td>?</td> +<td>Broadsword, <i>**ShortSword</i></td><td>?</td> <td><i>*PinkHelmet</td> <td>ForestArmor</td> <td>?</td> <td>?</td> <td>CopperArmbands</td></tr> <tr><th>60</th> -<td>BlacksmithAxe, Kanabo</td><td>?</td> +<td><i>*BlacksmithAxe</i>, <i>*Kanabo</i></td><td>?</td> <td>FafiMask, <i>*WickedShroomHat</td> <td>?</td> <td>?</td> <td>?</td> <td>?</td></tr> <tr><th>65</th> @@ -550,6 +552,9 @@ wikia.write(""" </table> """) +wikia.write("<hr/>") +wikia.write("Run at: " + datetime.datetime.now().isoformat()) +wikia.write("</body></html>") wikia.close() # Print for reference the landmarks |