forked from iSchool-597PR/2022Spring_Finals
-
Notifications
You must be signed in to change notification settings - Fork 2
/
for_running.py
30 lines (24 loc) · 1.86 KB
/
for_running.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
import main_final
if __name__ == "__main__":
item_dict = {}
level6_result = main_final.aggregate_analyze(2000, 6, "MonkeyKing", "MonkeyKing",
"Monkey King 1st", "King Monkey 2nd", 20, 0, False, item_dict,
True, False, False, False, False, False)
noMKB_result = main_final.aggregate_analyze(2000, 15, "MonkeyKing", "MonkeyKing",
"Monkey King 1st", "King Monkey 2nd", 60, 0, False, item_dict,
True, False, False, False, False, False)
# You could try item "Heart" or "Satanic" here.
item_dict["MKB"] = 1
MKB_result = main_final.aggregate_analyze(2000, 15, "MonkeyKing", "MonkeyKing",
"Monkey King 1st", "King Monkey 2nd", 60, 0, False, item_dict,
True, False, False, False, False, False)
main_final.creat_plot(noMKB_result, MKB_result, "Without MKB", "With MKB")
main_final.creat_plot(noMKB_result, level6_result, "Level 15", "Level 6")
item_dict_2 = {}
level6_main_result = main_final.aggregate_analyze(5000, 6, "BountyHunter", "BountyHunter",
"Bounty Hunter 1st", "Hunter Bounty 2nd", 20, 1, False, item_dict_2,
True, False, False, False, False, True)
level15_main_result = main_final.aggregate_analyze(5000, 15, "BountyHunter", "BountyHunter",
"Bounty Hunter 1st", "Hunter Bounty 2nd", 60, 1, False, item_dict_2,
True, False, False, False, False, True)
main_final.creat_plot(level15_main_result, level6_main_result, "Level 15 main skills", "Level 6 main skills")