v2017.05.14

- added imagination cost to skills
- fixed pickup effects
- started implementing spider queen battle
This commit is contained in:
lcdr
2017-05-14 18:27:17 +02:00
parent a9eebc1190
commit a6a435e241
18 changed files with 195 additions and 37 deletions

View File

@@ -74,8 +74,8 @@ class Init:
self.root.level_scores = tuple(i[0] for i in self.cdclient.execute("select requiredUScore from LevelProgressionLookup").fetchall())
self.root.world_info = BTrees.IOBTree.BTree()
for world_id, template in self.cdclient.execute("select zoneID, zoneControlTemplate from ZoneTable"):
self.root.world_info[world_id] = template
for world_id, script_id, template in self.cdclient.execute("select zoneID, scriptID, zoneControlTemplate from ZoneTable"):
self.root.world_info[world_id] = scripts.SCRIPTS.get(script_id), template
def gen_missions(self):
self.root.missions = BTrees.IOBTree.BTree()