Example #1
0
def get_weapon_types():
    ''' get the list of available armour '''
    weapon_list = staticmodel.get().weapons
    return [get_weapon_properties(weapon) for weapon in weapon_list]
Example #2
0
def get_profession_types():
    ''' get the list of available Professions and the skills associated with each '''
    professions_list = staticmodel.get().professions.values()
    return [get_profession_properties(profession) for profession in professions_list]
Example #3
0
def get_skill_types():
    ''' get the list of available Skills '''
    skills_list = staticmodel.get().skills.values()
    return [get_skill_properties(skill) for skill in skills_list]
Example #4
0
def get_armour_types():
    ''' get the list of available armour types '''
    armour_list = staticmodel.get().armour.values()
    return [get_armour_properties(armour) for armour in armour_list]