File size: 756 Bytes
025687f
 
 
b8aecdd
 
025687f
 
 
 
 
 
 
 
 
 
 
 
 
 
b8aecdd
 
025687f
b8aecdd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
from base.calculator import analyze_details
from parse import Parser
from schools.first.attribute import BeiAoJue
from schools.first.buffs import BUFFS
from schools.first.skills import SKILLS


if __name__ == '__main__':
    attribute = BeiAoJue()
    attribute.strength_base += 6665
    attribute.weapon_damage_base += 3291
    attribute.weapon_damage_rand += 2194
    attribute.surplus += 29401
    attribute.strain_base += 15598
    attribute.physical_attack_power_base += 28964
    attribute.physical_critical_strike_base += 30507
    attribute.physical_overcome_base += 24303
    attribute.physical_critical_power_base += 7905

    parser = Parser(SKILLS, BUFFS)
    parser("logs.jcl")
    analyze_details(parser, attribute)
    print(parser.records)