Merge branch 'feature/alphaclones' into development

This commit is contained in:
blitzmann
2017-01-26 19:53:27 -05:00
12 changed files with 181 additions and 7 deletions

View File

@@ -205,6 +205,9 @@ class Character(object):
def all5ID(self):
return self.all5().ID
def getAlphaCloneList(self):
return eos.db.getAlphaCloneList()
def getCharacterList(self):
return eos.db.getCharacterList()
@@ -250,6 +253,10 @@ class Character(object):
skills.append((skill.ID, skill.name))
return skills
def setAlphaClone(self, char, cloneID):
char.alphaCloneID = cloneID
eos.db.commit()
def getSkillDescription(self, itemID):
return eos.db.getItem(itemID).description